mirror of
https://github.com/bitwarden/browser
synced 2025-12-14 15:23:33 +00:00
15 lines
570 B
TypeScript
15 lines
570 B
TypeScript
import { NgModule } from "@angular/core";
|
|
|
|
import { CiphersComponent } from "./ciphers.component";
|
|
import { OrganizationBadgeModule } from "./organization-badge/organization-badge.module";
|
|
import { VaultSharedModule } from "./shared/vault-shared.module";
|
|
import { VaultRoutingModule } from "./vault-routing.module";
|
|
import { VaultComponent } from "./vault.component";
|
|
|
|
@NgModule({
|
|
imports: [VaultSharedModule, VaultRoutingModule, OrganizationBadgeModule],
|
|
declarations: [VaultComponent, CiphersComponent],
|
|
exports: [VaultComponent],
|
|
})
|
|
export class VaultModule {}
|