mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-04-01 21:13:09 +00:00
* rework PackageDataEntry for new strategy * fix type error * fix issues with manifest fetching * mock installs working
33 lines
1.1 KiB
TypeScript
33 lines
1.1 KiB
TypeScript
import { NgModule } from '@angular/core'
|
|
import { CommonModule } from '@angular/common'
|
|
import { IonicModule } from '@ionic/angular'
|
|
import { ServerBackupPage } from './server-backup.page'
|
|
import { BackingUpComponent } from './backing-up/backing-up.component'
|
|
import { RouterModule, Routes } from '@angular/router'
|
|
import { BackupDrivesComponentModule } from 'src/app/components/backup-drives/backup-drives.component.module'
|
|
import { SharedPipesModule } from '@start9labs/shared'
|
|
import { BackupSelectPageModule } from 'src/app/modals/backup-select/backup-select.module'
|
|
import { PkgMainStatusPipe } from './backing-up/backing-up.component'
|
|
import { UiPipeModule } from 'src/app/pipes/ui/ui.module'
|
|
|
|
const routes: Routes = [
|
|
{
|
|
path: '',
|
|
component: ServerBackupPage,
|
|
},
|
|
]
|
|
|
|
@NgModule({
|
|
imports: [
|
|
CommonModule,
|
|
IonicModule,
|
|
RouterModule.forChild(routes),
|
|
SharedPipesModule,
|
|
BackupDrivesComponentModule,
|
|
BackupSelectPageModule,
|
|
UiPipeModule,
|
|
],
|
|
declarations: [ServerBackupPage, BackingUpComponent, PkgMainStatusPipe],
|
|
})
|
|
export class ServerBackupPageModule {}
|