add src/app/hero.service.ts

This commit is contained in:
Костя 2025-06-18 15:49:14 +03:00
parent 60cf72f36f
commit fbd8f6bae9
1 changed files with 9 additions and 0 deletions

9
src/app/hero.service.ts Normal file
View File

@ -0,0 +1,9 @@
import { Injectable } from '@angular/core';
@Injectable({
providedIn: 'root'
})
export class HeroService {
constructor() { }
}