Skip to content

Instantly share code, notes, and snippets.

Embed
What would you like to do?
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