Skip to content
Snippets Groups Projects
Select Git revision
  • 0181c4ea8d15511c71384aab55803cc105f8b16c
  • develop default protected
  • support-for-intellij-25.1
  • chore/support-for-intellijj-2024.3
  • feature/references
  • feature/commenter-for-aspect-files
  • feature/link-generated-code-and-definition
  • main
  • legacy
  • v0.3.5 protected
  • v0.3.4 protected
  • v0.3.3 protected
  • v0.3.2 protected
  • v0.3.1 protected
  • v0.3.0 protected
  • v0.2.0 protected
16 results

settings.gradle.kts

Blame
  • app.module.ts 1.16 KiB
    import { NgModule } from '@angular/core';
    import { BrowserModule } from '@angular/platform-browser';
    
    // --- Map
    import { LeafletModule } from '@asymmetrik/ngx-leaflet';
    
    // --- MQTT
    import { MqttModule } from 'ngx-mqtt';
    import { MQTTconfig } from './../environments/environment';
    
    
    // --- WS
    // import * as SockJS from 'sockjs-client';
    
    // --- Modules
    import { SharedModule } from './shared/shared.module';
    import { CoreModule } from './core/core.module';
    
    // --- Services
    import { ApiService } from "./core/api.service";
    // import { StompService, StompConfig } from '@stomp/ng2-stompjs';
    
    // --- Components
    import { AppComponent } from './app.component';
    import { MapComponent } from './components/map/map.component';
    import { AppRoutingModule } from './app-routing.module';
    import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
    
    
    
    @NgModule({
      declarations: [
        AppComponent,
        MapComponent
      ],
      imports: [
        BrowserModule,
        AppRoutingModule,
        SharedModule,
        CoreModule,
        LeafletModule,
        BrowserAnimationsModule,
        MqttModule.forRoot(MQTTconfig)
      ],
      providers: [ApiService],
      bootstrap: [AppComponent]
    })
    export class AppModule { }