mirror of
https://github.com/amineo/t2-stat-parser.git
synced 2026-02-25 09:03:33 +00:00
8 lines
134 B
TypeScript
8 lines
134 B
TypeScript
import { Injectable } from '@nestjs/common';
|
|
|
|
@Injectable()
|
|
export class AppService {
|
|
getHello(): string {
|
|
return 'Healthy!';
|
|
}
|
|
}
|