17 lines
519 B
TypeScript
17 lines
519 B
TypeScript
import { NgModule } from '@angular/core';
|
|
import { CommonModule } from '@angular/common';
|
|
import { IonicModule } from '@ionic/angular';
|
|
import { HomePage } from './home.page';
|
|
|
|
import { HomePageRoutingModule } from './home-routing.module';
|
|
import { Socket } from 'ngx-socket-io';
|
|
import { SocketFive } from '../app.module';
|
|
|
|
@NgModule({
|
|
imports: [CommonModule, IonicModule, HomePageRoutingModule],
|
|
declarations: [HomePage],
|
|
providers: [{provide: Socket, useClass: SocketFive}]
|
|
})
|
|
export class HomePageModule5 {}
|
|
|