-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.module.ts
More file actions
32 lines (29 loc) · 899 Bytes
/
app.module.ts
File metadata and controls
32 lines (29 loc) · 899 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { AppRoutingModule } from './app-routing.module';
import { AppComponent } from './app.component';
import { PublicDealsComponent } from './public-deals/public-deals.component';
import { PrivateDealsComponent } from './private-deals/private-deals.component';
import { CallbackComponent } from './callback.component';
import { HttpClientModule } from '@angular/common/http';
import { DealService } from './deal.service';
import { AuthService } from './auth/auth.service';
@NgModule({
declarations: [
AppComponent,
PublicDealsComponent,
PrivateDealsComponent,
CallbackComponent
],
imports: [
BrowserModule,
AppRoutingModule,
HttpClientModule
],
providers: [
DealService,
AuthService
],
bootstrap: [AppComponent]
})
export class AppModule { }