[WIP] multiple servers

This commit is contained in:
2022-01-30 14:13:05 +02:00
parent e11a283b2c
commit 805ae22f3b
37 changed files with 1183 additions and 554 deletions

View File

@@ -0,0 +1,15 @@
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 { SocketSix } from '../app.module';
@NgModule({
imports: [CommonModule, IonicModule, HomePageRoutingModule],
declarations: [HomePage],
providers: [{provide: Socket, useClass: SocketSix}]
})
export class HomePageModule6 {}