This repository has been archived on 2024-06-14. You can view files and clone it, but cannot push or open issues or pull requests.
icynet-auth-server/src/app.service.ts

9 lines
142 B
TypeScript
Raw Normal View History

2022-03-09 18:37:04 +00:00
import { Injectable } from '@nestjs/common';
@Injectable()
export class AppService {
getHello(): string {
return 'Hello World!';
}
}