Chatbot / src /app /app.module.ts
SharanB's picture
Upload 20 files
08eaca3 verified
raw
history blame contribute delete
630 Bytes
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { FormsModule } from '@angular/forms';
import { HttpClientModule } from '@angular/common/http';
import { AppComponent } from './app.component';
import { ChatbotComponent } from './chatbot/chatbot.component';
import { CouchdbService } from './couchdb.service'; // Import the service
@NgModule({
declarations: [
AppComponent,
ChatbotComponent
],
imports: [
BrowserModule,
FormsModule,
HttpClientModule
],
providers: [CouchdbService],
bootstrap: [AppComponent]
})
export class AppModule { }