Files
twenty/server/src/app.service.ts
2022-12-01 15:58:08 +01:00

9 lines
136 B
TypeScript

import { Injectable } from '@nestjs/common';
@Injectable()
export class AppService {
health(): string {
return 'Healthy!';
}
}