Trần Viết Sơn
initialize backend
88f437e
raw
history blame contribute delete
142 Bytes
import { Injectable } from '@nestjs/common';
@Injectable()
export class AppService {
getHello(): string {
return 'Hello World!';
}
}