Feature/shared refactor (#1176)

* refactor: move most of the shared entities to @start8labs/shared library
This commit is contained in:
Alex Inkin
2022-02-15 18:13:05 +03:00
committed by GitHub
parent 1769f7e2e6
commit 7c26b18c73
164 changed files with 2908 additions and 2860 deletions

View File

@@ -3,7 +3,7 @@ import { CommonModule } from '@angular/common'
import { Routes, RouterModule } from '@angular/router'
import { IonicModule } from '@ionic/angular'
import { ServerSpecsPage } from './server-specs.page'
import { SharingModule } from 'src/app/modules/sharing.module'
import { EmverPipesModule } from '@start9labs/shared'
const routes: Routes = [
{
@@ -17,8 +17,8 @@ const routes: Routes = [
CommonModule,
IonicModule,
RouterModule.forChild(routes),
SharingModule,
EmverPipesModule,
],
declarations: [ServerSpecsPage],
})
export class ServerSpecsPageModule { }
export class ServerSpecsPageModule {}