Files
psp_panel/src/app/app.module.ts
T

31 lines
1.2 KiB
TypeScript
Raw Normal View History

2021-12-29 09:28:51 +03:00
import { NgModule } from '@angular/core';
2022-07-22 13:13:50 +03:00
import { HashLocationStrategy, LocationStrategy } from '@angular/common';
2021-12-29 09:28:51 +03:00
import { AppComponent } from './app.component';
2022-07-22 13:13:50 +03:00
import { AppRoutingModule } from './app-routing.module';
import { AppLayoutModule } from './layout/app.layout.module';
import { NotfoundComponent } from './demo/components/notfound/notfound.component';
import { ProductService } from './demo/service/product.service';
import { CountryService } from './demo/service/country.service';
import { CustomerService } from './demo/service/customer.service';
import { EventService } from './demo/service/event.service';
import { IconService } from './demo/service/icon.service';
import { NodeService } from './demo/service/node.service';
import { PhotoService } from './demo/service/photo.service';
2021-12-09 17:24:42 +03:00
2021-12-06 10:26:58 +03:00
@NgModule({
2022-07-22 13:13:50 +03:00
declarations: [
AppComponent, NotfoundComponent
],
2021-12-09 17:24:42 +03:00
imports: [
AppRoutingModule,
2022-07-22 13:13:50 +03:00
AppLayoutModule
2021-12-09 17:24:42 +03:00
],
providers: [
2022-07-22 13:13:50 +03:00
{ provide: LocationStrategy, useClass: HashLocationStrategy },
2021-12-09 17:24:42 +03:00
CountryService, CustomerService, EventService, IconService, NodeService,
2022-07-22 13:13:50 +03:00
PhotoService, ProductService
2021-12-09 17:24:42 +03:00
],
bootstrap: [AppComponent]
2021-12-06 10:26:58 +03:00
})
export class AppModule { }