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 {
|
2016-08-23 00:17:18 -07:00
|
|
|
userName = 'Sherlock Holmes';
|
2016-07-12 18:14:13 -07:00
|
|
|
}
|