Skip to content

Instantly share code, notes, and snippets.

@kobvel
Last active January 29, 2018 10:59
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 kobvel/137859204be0288003c252b02c60f106 to your computer and use it in GitHub Desktop.
Save kobvel/137859204be0288003c252b02c60f106 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 { HashwordsProvider } from './libs.providers'
@NgModule({
declarations: [AppComponent],
imports: [BrowserModule],
providers: [
HashwordsProvider
],
bootstrap: [AppComponent]
})
export class AppModule { }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment