10 lines
211 B
TypeScript
10 lines
211 B
TypeScript
import { Injectable } from '@angular/core';
|
|
|
|
/** Mock client-side authentication/authorization service */
|
|
@Injectable()
|
|
export class AuthService {
|
|
getAuthorizationToken() {
|
|
return 'some-auth-token';
|
|
}
|
|
}
|