course_web01 / backend /src /app.service.ts
trae-bot
Prepare Hugging Face Space deployment
73746a8
raw
history blame contribute delete
142 Bytes
import { Injectable } from '@nestjs/common';
@Injectable()
export class AppService {
getHello(): string {
return 'Hello World!';
}
}