1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-19 09:43:23 +00:00

[SM-45] Scaffold secrets manager module (#2989)

* Scaffold secrets manager module
This commit is contained in:
Oscar Hinton
2022-07-22 11:16:24 +02:00
committed by GitHub
parent d99acd818b
commit 80ee6d23c3
14 changed files with 158 additions and 4 deletions

View File

@@ -8,6 +8,10 @@ const routes: Routes = [
path: "providers",
loadChildren: () => ProvidersModule,
},
{
path: "sm",
loadChildren: async () => (await import("./sm/sm.module")).SecretsManagerModule,
},
];
@NgModule({