Add account module.

This commit is contained in:
Alexis Lahouze 2017-07-13 16:57:02 +02:00
parent 48caa14cd8
commit 65a322466a
1 changed files with 20 additions and 0 deletions

View File

@ -0,0 +1,20 @@
// vim: set tw=80 ts=2 sw=2 sts=2 :
import { NgModule } from '@angular/core';
import { HttpModule } from '@angular/http';
import { NgLoggerModule, Level } from '@nsalaun/ng-logger';
import { AccountService } from './account.service';
@NgModule({
imports: [
HttpModule,
NgLoggerModule.forRoot(Level.LOG)
],
providers: [
AccountService
]
})
export class AccountModule {}