Files
doneit-web/src/app/shared/popover/chat-debugging/chat-debugging.page.ts
T

18 lines
426 B
TypeScript
Raw Normal View History

2022-09-26 16:16:37 +01:00
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() {}
}