import { Component, OnInit } from '@angular/core'; // import { ChatSystemService } from 'src/app/services/chat/chat-system.service'; @Component({ selector: 'app-chat-debugging', templateUrl: './chat-debugging.page.html', styleUrls: ['./chat-debugging.page.scss'], }) export class ChatDebuggingPage implements OnInit { constructor( // public ChatSystemService: ChatSystemService ) { } ngOnInit() {} }