2016-11-22 20:07:16 +08:00

11 lines
155 B
TypeScript

import { Injectable } from '@angular/core';
@Injectable()
export class DataService {
constructor() { }
getHeroName() {
return 'Windstorm';
}
}