portfolio.web/src/app/services/auth.service.ts

13 lines
231 B
TypeScript

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