2019-03-28 16:39:49 +01:00
|
|
|
import { DragDropModule } from "@angular/cdk/drag-drop";
|
2022-06-23 04:36:05 -07:00
|
|
|
import { LayoutModule } from "@angular/cdk/layout";
|
2018-06-04 23:10:41 -04:00
|
|
|
import { NgModule } from "@angular/core";
|
|
|
|
|
import { FormsModule } from "@angular/forms";
|
|
|
|
|
import { BrowserAnimationsModule } from "@angular/platform-browser/animations";
|
|
|
|
|
|
|
|
|
|
import { AppComponent } from "./app.component";
|
2023-01-12 13:23:14 +10:00
|
|
|
import { CoreModule } from "./core";
|
2021-07-21 11:32:27 +02:00
|
|
|
import { OssRoutingModule } from "./oss-routing.module";
|
2021-06-16 20:28:05 +02:00
|
|
|
import { OssModule } from "./oss.module";
|
2021-10-06 20:45:45 +02:00
|
|
|
import { WildcardRoutingModule } from "./wildcard-routing.module";
|
2018-07-23 21:47:08 -04:00
|
|
|
|
2023-09-14 14:28:41 +02:00
|
|
|
/**
|
|
|
|
|
* This is the AppModule for the OSS version of Bitwarden.
|
|
|
|
|
* `bitwarden_license/bit-web/app.module.ts` contains the commercial version.
|
|
|
|
|
*
|
|
|
|
|
* You probably do not want to modify this file. Consider editing `oss.module.ts` instead.
|
|
|
|
|
*/
|
2018-06-04 23:10:41 -04:00
|
|
|
@NgModule({
|
|
|
|
|
imports: [
|
2021-06-16 20:28:05 +02:00
|
|
|
OssModule,
|
2018-06-04 23:10:41 -04:00
|
|
|
BrowserAnimationsModule,
|
|
|
|
|
FormsModule,
|
2022-07-26 19:34:45 +02:00
|
|
|
CoreModule,
|
2019-03-28 16:39:49 +01:00
|
|
|
DragDropModule,
|
2022-06-23 04:36:05 -07:00
|
|
|
LayoutModule,
|
2021-07-21 11:32:27 +02:00
|
|
|
OssRoutingModule,
|
2021-10-06 20:45:45 +02:00
|
|
|
WildcardRoutingModule, // Needs to be last to catch all non-existing routes
|
2018-06-04 23:10:41 -04:00
|
|
|
],
|
2021-09-10 15:27:00 +02:00
|
|
|
declarations: [AppComponent],
|
2018-06-04 23:10:41 -04:00
|
|
|
bootstrap: [AppComponent],
|
|
|
|
|
})
|
|
|
|
|
export class AppModule {}
|