Files
monie-backend/apps/auth/src/auth.service.ts
T

9 lines
143 B
TypeScript

import { Injectable } from '@nestjs/common';
@Injectable()
export class AuthService {
getHello(): string {
return 'Hello World!';
}
}