mirror of https://github.com/ghostfolio/ghostfolio
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
709 B
22 lines
709 B
import { CommonModule } from '@angular/common';
|
|
import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core';
|
|
import { MatButtonModule } from '@angular/material/button';
|
|
import { MatCardModule } from '@angular/material/card';
|
|
import { CacheService } from '@ghostfolio/client/app/services/cache.service';
|
|
|
|
import { AdminPageRoutingModule } from './admin-page-routing.module';
|
|
import { AdminPageComponent } from './admin-page.component';
|
|
|
|
@NgModule({
|
|
declarations: [AdminPageComponent],
|
|
exports: [],
|
|
imports: [
|
|
AdminPageRoutingModule,
|
|
CommonModule,
|
|
MatButtonModule,
|
|
MatCardModule
|
|
],
|
|
providers: [CacheService],
|
|
schemas: [CUSTOM_ELEMENTS_SCHEMA]
|
|
})
|
|
export class AdminPageModule {}
|
|
|