mirror of
https://github.com/aditama-labs/nest-autocrud.git
synced 2024-11-22 03:16:21 +00:00
9 lines
142 B
TypeScript
9 lines
142 B
TypeScript
import { Injectable } from '@nestjs/common';
|
|
|
|
@Injectable()
|
|
export class AppService {
|
|
getHello(): string {
|
|
return 'Hello World!';
|
|
}
|
|
}
|