Files
doneit-web/src/app/ui/chat/modal/chat-debugging/chat-debugging.page.ts
T

18 lines
420 B
TypeScript
Raw Normal View History

2022-09-26 16:16:37 +01:00
import { Component, OnInit } from '@angular/core';
2024-08-09 10:50:32 +01:00
// import { ChatSystemService } from 'src/app/services/chat/chat-system.service';
2022-09-26 16:16:37 +01:00
@Component({
selector: 'app-chat-debugging',
templateUrl: './chat-debugging.page.html',
styleUrls: ['./chat-debugging.page.scss'],
})
export class ChatDebuggingPage implements OnInit {
constructor(
2024-08-09 10:50:32 +01:00
// public ChatSystemService: ChatSystemService
2022-09-26 16:16:37 +01:00
) { }
ngOnInit() {}
}