|
|
|
@@ -5,14 +5,9 @@ import { HttpClientModule } from '@angular/common/http'; |
|
|
|
|
|
|
|
import { AppComponent } from './app.component'; |
|
|
|
import { AppRoutingModule } from './app-routing.module'; |
|
|
|
import { AuthGuard } from './auth/auth-guard.service'; |
|
|
|
import { AuthModule } from './auth/auth.module'; |
|
|
|
import { AuthService } from './auth/auth.service'; |
|
|
|
import { DataStorageService } from './shared/data-storage.service'; |
|
|
|
import { RecipeService } from './recipes/recipe.service'; |
|
|
|
import { SharedModule } from './shared/shared.module'; |
|
|
|
import { ShoppingListModule } from './shopping-list/shopping-list.module'; |
|
|
|
import { ShoppingListService } from './shopping-list/shopping-list.service'; |
|
|
|
import { AuthModule } from './auth/auth.module'; |
|
|
|
import { CoreModule } from './core/core.module'; |
|
|
|
|
|
|
|
@NgModule({ |
|
|
|
@@ -29,12 +24,6 @@ import { CoreModule } from './core/core.module'; |
|
|
|
AuthModule, |
|
|
|
CoreModule |
|
|
|
], |
|
|
|
providers: [ |
|
|
|
ShoppingListService, |
|
|
|
RecipeService, |
|
|
|
DataStorageService, |
|
|
|
AuthService, |
|
|
|
AuthGuard], |
|
|
|
bootstrap: [AppComponent] |
|
|
|
}) |
|
|
|
export class AppModule { } |