Files
twenty/packages/twenty-server/src/app.service.ts
2023-12-10 18:10:54 +01:00

9 lines
136 B
TypeScript

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