mirror of
https://github.com/bitwarden/browser
synced 2025-12-20 10:13:31 +00:00
[SM-45] Scaffold secrets manager module (#2989)
* Scaffold secrets manager module
This commit is contained in:
19
bitwarden_license/bit-web/src/app/sm/sm.module.ts
Normal file
19
bitwarden_license/bit-web/src/app/sm/sm.module.ts
Normal file
@@ -0,0 +1,19 @@
|
||||
import { CommonModule } from "@angular/common";
|
||||
import { NgModule } from "@angular/core";
|
||||
import { FormsModule } from "@angular/forms";
|
||||
|
||||
import { JslibModule } from "@bitwarden/angular/jslib.module";
|
||||
|
||||
import { OssModule } from "src/app/oss.module";
|
||||
|
||||
import { LayoutComponent } from "./layout/layout.component";
|
||||
import { NavigationComponent } from "./layout/navigation.component";
|
||||
import { SecretsManagerRoutingModule } from "./sm-routing.module";
|
||||
import { SMGuard } from "./sm.guard";
|
||||
|
||||
@NgModule({
|
||||
imports: [CommonModule, FormsModule, OssModule, JslibModule, SecretsManagerRoutingModule],
|
||||
declarations: [LayoutComponent, NavigationComponent],
|
||||
providers: [SMGuard],
|
||||
})
|
||||
export class SecretsManagerModule {}
|
||||
Reference in New Issue
Block a user