WUT_Computer_Science/monorepo/apps/backend/src/app/app.service.ts

9 lines
164 B
TypeScript

import { Injectable } from '@nestjs/common';
@Injectable()
export class AppService {
getData(): { message: string } {
return { message: 'Hello API' };
}
}