bitwarden-estensione-browser/apps/web/src/app/app.module.ts

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

28 lines
911 B
TypeScript
Raw Normal View History

import { DragDropModule } from "@angular/cdk/drag-drop";
2018-06-05 05:10:41 +02:00
import { NgModule } from "@angular/core";
import { FormsModule } from "@angular/forms";
import { BrowserAnimationsModule } from "@angular/platform-browser/animations";
2022-02-24 12:10:07 +01:00
import { InfiniteScrollModule } from "ngx-infinite-scroll";
2018-06-05 05:10:41 +02:00
import { AppComponent } from "./app.component";
import { OssRoutingModule } from "./oss-routing.module";
import { OssModule } from "./oss.module";
import { ServicesModule } from "./services/services.module";
import { WildcardRoutingModule } from "./wildcard-routing.module";
2018-07-24 03:47:08 +02:00
2018-06-05 05:10:41 +02:00
@NgModule({
imports: [
OssModule,
2018-06-05 05:10:41 +02:00
BrowserAnimationsModule,
FormsModule,
2018-06-05 21:02:53 +02:00
ServicesModule,
2019-03-19 17:44:22 +01:00
InfiniteScrollModule,
DragDropModule,
OssRoutingModule,
WildcardRoutingModule, // Needs to be last to catch all non-existing routes
2018-06-05 05:10:41 +02:00
],
2021-09-10 15:27:00 +02:00
declarations: [AppComponent],
2018-06-05 05:10:41 +02:00
bootstrap: [AppComponent],
})
export class AppModule {}