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

18 lines
414 B
TypeScript
Raw Normal View History

2022-09-26 16:16:37 +01:00
import { Component, OnInit } from '@angular/core';
2022-09-30 15:13:36 +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(
2022-09-30 15:13:36 +01:00
public ChatSystemService: ChatSystemService
2022-09-26 16:16:37 +01:00
) { }
ngOnInit() {}
}