9 lines
136 B
TypeScript
9 lines
136 B
TypeScript
import { Injectable } from '@nestjs/common';
|
|
|
|
@Injectable()
|
|
export class AppService {
|
|
health(): string {
|
|
return 'Healthy!';
|
|
}
|
|
}
|