import { Component } from '@angular/core'; import {AuthService} from '@app/_services'; @Component({ selector: 'app-root', templateUrl: './app.component.html', styleUrls: ['./app.component.scss'] }) export class AppComponent { title = 'cic-staff-client'; constructor(private authService: AuthService) { this.authService.getPublicKeys().then(); } }