2019-09-19 14:15:43 +09:00
|
|
|
import { Component, OnInit } from '@angular/core';
|
|
|
|
import { AuthenticationProtocolService } from '@ucap-webmessenger/protocol-authentication';
|
2019-09-18 15:02:21 +09:00
|
|
|
|
|
|
|
@Component({
|
|
|
|
selector: 'app-page-messenger-main',
|
|
|
|
templateUrl: './main.page.component.html',
|
|
|
|
styleUrls: ['./main.page.component.scss']
|
|
|
|
})
|
2019-09-19 14:15:43 +09:00
|
|
|
export class MainPageComponent implements OnInit {
|
|
|
|
constructor(
|
|
|
|
private authenticationProtocolService: AuthenticationProtocolService
|
|
|
|
) {}
|
|
|
|
|
|
|
|
ngOnInit(): void {
|
|
|
|
// this.authenticationProtocolService.login({});
|
|
|
|
}
|
2019-09-18 15:02:21 +09:00
|
|
|
}
|