13 lines
231 B
TypeScript
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;
|
|
}
|
|
}
|