mirror of
https://github.com/bitwarden/web
synced 2025-12-16 00:03:25 +00:00
13 lines
243 B
TypeScript
13 lines
243 B
TypeScript
import { NgModule } from '@angular/core';
|
|
|
|
import { VaultComponent } from './vault.component';
|
|
|
|
@NgModule({
|
|
declarations: [
|
|
VaultComponent,
|
|
],
|
|
entryComponents: [],
|
|
providers: [],
|
|
})
|
|
export class OrganizationsModule { }
|