11 lines
154 B
TypeScript
Raw Normal View History

2016-04-27 11:28:22 -07:00
import {Injectable} from '@angular/core';
@Injectable()
export class DataService {
constructor() {
}
getHeroName() {
return 'Windstorm';
}
}