1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-21 10:43:35 +00:00

[Provider] Add support for managing providers (#1014)

This commit is contained in:
Oscar Hinton
2021-07-21 11:32:27 +02:00
committed by GitHub
parent ebe08535e0
commit a94faf06a9
64 changed files with 2910 additions and 491 deletions

View File

@@ -6,10 +6,12 @@ import { NgModule } from '@angular/core';
import { FormsModule } from '@angular/forms';
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
import { AppRoutingModule } from '../../../src/app/app-routing.module';
import { AppComponent } from '../../../src/app/app.component';
import { OssModule } from '../../../src/app/oss.module';
import { ServicesModule } from '../../../src/app/services/services.module';
import { AppRoutingModule } from './app-routing.module';
import { AppComponent } from 'src/app/app.component';
import { OssRoutingModule } from 'src/app/oss-routing.module';
import { OssModule } from 'src/app/oss.module';
import { ServicesModule } from 'src/app/services/services.module';
@NgModule({
imports: [
@@ -21,6 +23,7 @@ import { ServicesModule } from '../../../src/app/services/services.module';
InfiniteScrollModule,
DragDropModule,
AppRoutingModule,
OssRoutingModule,
],
bootstrap: [AppComponent],
})