Sky.Net/client/src/app/app.module.ts

27 lines
711 B
TypeScript
Raw Normal View History

2022-05-12 11:53:03 -07:00
import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
2022-05-12 15:07:23 -07:00
import { HttpClientModule } from '@angular/common/http';
2022-05-12 11:53:03 -07:00
import { AppRoutingModule } from './app-routing.module';
import { AppComponent } from './app.component';
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
2022-05-12 16:52:52 -07:00
import { CoreModule } from './core/core.module';
import { ShopModule } from './shop/shop.module';
2022-05-12 11:53:03 -07:00
@NgModule({
declarations: [
2022-05-12 16:52:52 -07:00
AppComponent
2022-05-12 11:53:03 -07:00
],
imports: [
BrowserModule,
AppRoutingModule,
BrowserAnimationsModule,
2022-05-12 16:52:52 -07:00
HttpClientModule,
CoreModule,
ShopModule
2022-05-12 11:53:03 -07:00
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule { }