9 lines
188 B
TypeScript
Raw Normal View History

2016-07-12 18:14:13 -07:00
// #docregion
import { Injectable } from '@angular/core';
@Injectable()
/** Dummy version of an authenticated user service */
export class UserService {
userName = 'Sherlock Holmes';
2016-07-12 18:14:13 -07:00
}