angular/aio/content/examples/http/src/app/auth.service.ts
2018-01-31 10:24:43 -08:00

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';
}
}