import { Injectable } from '@angular/core'; import { environment } from 'src/environments/environment'; @Injectable({ providedIn: 'root' }) export class AuthService { getApiKey(): string{ return environment.apiKey; } }