Created
February 10, 2019 13:20
-
-
Save Stronhold/925c50f7ca81c5bae5cc19cf01b83cee to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { BrowserModule } from '@angular/platform-browser'; | |
import { NgModule } from '@angular/core'; | |
import { ErrorService } from './error.service'; | |
import { LogService } from './log.service'; | |
import { TableService } from './table.service'; | |
@NgModule({ | |
declarations: [ | |
], | |
imports: [ | |
BrowserModule | |
], | |
providers: [ErrorService, LogService, TableService], | |
bootstrap: [] | |
}) | |
export class WebSocketServicesModule { | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment