mirror of
https://github.com/kuhyx/WUT_Computer_Science.git
synced 2026-07-06 13:03:16 +02:00
9 lines
164 B
TypeScript
9 lines
164 B
TypeScript
import { Injectable } from '@nestjs/common';
|
|
|
|
@Injectable()
|
|
export class AppService {
|
|
getData(): { message: string } {
|
|
return { message: 'Hello API' };
|
|
}
|
|
}
|