mirror of
https://code.equilibrium.co.ao/ITO/doneit-web.git
synced 2026-04-19 04:57:52 +00:00
19 lines
460 B
TypeScript
19 lines
460 B
TypeScript
|
|
import { Component, OnInit } from '@angular/core';
|
||
|
|
import { WsChatMethodsService} from 'src/app/services/chat/ws-chat-methods.service';
|
||
|
|
|
||
|
|
@Component({
|
||
|
|
selector: 'app-chat-message-debugging',
|
||
|
|
templateUrl: './chat-message-debugging.page.html',
|
||
|
|
styleUrls: ['./chat-message-debugging.page.scss'],
|
||
|
|
})
|
||
|
|
export class ChatMessageDebuggingPage implements OnInit {
|
||
|
|
|
||
|
|
constructor(
|
||
|
|
public wsChatMethodsService: WsChatMethodsService
|
||
|
|
) { }
|
||
|
|
|
||
|
|
ngOnInit() {
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|