LocChat/server/app.service.ts

9 lines
142 B
TypeScript
Raw Normal View History

2021-10-29 20:57:24 -04:00
import { Injectable } from '@nestjs/common';
@Injectable()
export class AppService {
getHello(): string {
return 'Hello World!';
}
}