This commit is contained in:
Peter Maquiran
2022-09-26 16:16:37 +01:00
parent 89c274ac4b
commit bf60b355fe
10 changed files with 150 additions and 36 deletions
@@ -0,0 +1,17 @@
import { Component, OnInit } from '@angular/core';
import { WsChatMethodsService} from 'src/app/services/chat/ws-chat-methods.service';
@Component({
selector: 'app-chat-debugging',
templateUrl: './chat-debugging.page.html',
styleUrls: ['./chat-debugging.page.scss'],
})
export class ChatDebuggingPage implements OnInit {
constructor(
public wsChatMethodsService: WsChatMethodsService
) { }
ngOnInit() {}
}