summaryrefslogtreecommitdiff
path: root/recipeBuddy/src/app/app.module.ts
diff options
context:
space:
mode:
authorTucker Evans <tuckerevans24@gmail.com>2019-11-27 22:40:42 -0500
committerTucker Evans <tuckerevans24@gmail.com>2019-12-02 19:24:21 -0500
commit3970d90fc06a0cc55c260a1155202eaba18e373b (patch)
tree6673aa64771555d6586e75fd359589eb3e4ea5a2 /recipeBuddy/src/app/app.module.ts
parentcafe1b4fd3cc02554f44ffbaa8467d867a6838cb (diff)
Add base code for BackendService
Diffstat (limited to 'recipeBuddy/src/app/app.module.ts')
-rw-r--r--recipeBuddy/src/app/app.module.ts3
1 files changed, 3 insertions, 0 deletions
diff --git a/recipeBuddy/src/app/app.module.ts b/recipeBuddy/src/app/app.module.ts
index fd2059c..eaa0553 100644
--- a/recipeBuddy/src/app/app.module.ts
+++ b/recipeBuddy/src/app/app.module.ts
@@ -9,6 +9,8 @@ import { StepCardComponent } from './cook-page/step-card/step-card.component';
import { AppRoutingModule } from './app-routing.module';
+import {HttpClientModule } from '@angular/common/http'
+
@NgModule({
declarations: [
AppComponent,
@@ -19,6 +21,7 @@ import { AppRoutingModule } from './app-routing.module';
BrowserModule,
AppRoutingModule,
MatCardModule,
+ HttpClientModule
],
providers: [],
bootstrap: [AppComponent]