File: /var/www/vhost/disk-apps/pwa.sports-crowd.com/src/app/pages/list-master/list-master.module.ts
import { NgModule } from "@angular/core";
import { CommonModule } from "@angular/common";
import { IonicModule } from "@ionic/angular";
import { TranslateModule } from "@ngx-translate/core";
import { ListMasterPageRoutingModule } from "./list-master-routing.module";
import { ListMasterPage } from "./list-master";
import { ChangeDirectionPage } from "../change-direction/change-direction";
import { PipesModule } from "../../pipes/pipes.module";
import { ComponentsModule } from "../../components/components.module";
@NgModule({
declarations: [ListMasterPage, ChangeDirectionPage],
imports: [CommonModule, IonicModule, TranslateModule.forChild(), ListMasterPageRoutingModule, PipesModule, ComponentsModule]
})
export class ListMasterPageModule { }