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

Add boilerplate for bitwarden_license (#1032)

This commit is contained in:
Oscar Hinton
2021-06-16 20:28:05 +02:00
committed by GitHub
parent c1a7b85f8b
commit 76210c30a8
7 changed files with 555 additions and 478 deletions

View File

@@ -0,0 +1,27 @@
import { ToasterModule } from 'angular2-toaster';
import { InfiniteScrollModule } from 'ngx-infinite-scroll';
import { DragDropModule } from '@angular/cdk/drag-drop';
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';
@NgModule({
imports: [
OssModule,
BrowserAnimationsModule,
FormsModule,
ServicesModule,
ToasterModule.forRoot(),
InfiniteScrollModule,
DragDropModule,
AppRoutingModule,
],
bootstrap: [AppComponent],
})
export class AppModule { }