mirror of
https://github.com/bitwarden/browser
synced 2025-12-12 14:23:32 +00:00
* fix routes. update copy and headers
* Patch build process
* Revert "Patch build process"
This reverts commit 4d3716d375.
---------
Co-authored-by: Matt Bishop <mbishop@bitwarden.com>
Co-authored-by: Tom <144813356+ttalty@users.noreply.github.com>
10 lines
324 B
TypeScript
10 lines
324 B
TypeScript
import { NgModule } from "@angular/core";
|
|
|
|
import { AccessIntelligenceRoutingModule } from "./access-intelligence-routing.module";
|
|
import { RiskInsightsComponent } from "./risk-insights.component";
|
|
|
|
@NgModule({
|
|
imports: [RiskInsightsComponent, AccessIntelligenceRoutingModule],
|
|
})
|
|
export class AccessIntelligenceModule {}
|