mirror of
https://code.equilibrium.co.ao/ITO/doneit-web.git
synced 2026-04-18 20:47:54 +00:00
18 lines
426 B
TypeScript
18 lines
426 B
TypeScript
|
|
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() {}
|
||
|
|
|
||
|
|
}
|