Skip to content

Instantly share code, notes, and snippets.

@Stronhold
Created February 10, 2019 13:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Stronhold/913f54d63fad0e47635591149396ced6 to your computer and use it in GitHub Desktop.
Save Stronhold/913f54d63fad0e47635591149396ced6 to your computer and use it in GitHub Desktop.
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { AppComponent } from './app.component';
import { WebSocketServicesModule } from './services/services.module';
@NgModule({
declarations: [
AppComponent
],
imports: [
BrowserModule,
WebSocketServicesModule
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule {
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment