14 lines
193 B
Plaintext
14 lines
193 B
Plaintext
|
import { Injectable } from '@angular/core';
|
||
|
|
||
|
export class DataService {
|
||
|
constructor() {
|
||
|
}
|
||
|
getHeroName() {
|
||
|
return 'Windstorm';
|
||
|
}
|
||
|
}
|
||
|
|
||
|
DataService.annotations = [
|
||
|
new Injectable()
|
||
|
];
|