mirror of
https://github.com/stashapp/stash.git
synced 2025-12-17 20:34:37 +03:00
17 lines
386 B
TypeScript
17 lines
386 B
TypeScript
import { NgModule } from '@angular/core';
|
|
import { SharedModule } from '../shared/shared.module';
|
|
|
|
import { SettingsRoutingModule } from './settings-routing.module';
|
|
import { SettingsComponent } from './settings/settings.component';
|
|
|
|
@NgModule({
|
|
imports: [
|
|
SharedModule,
|
|
SettingsRoutingModule
|
|
],
|
|
declarations: [
|
|
SettingsComponent
|
|
]
|
|
})
|
|
export class SettingsModule {}
|