web-service/apps/auth/src/auth.service.ts

10 lines
222 B
TypeScript
Raw Normal View History

2023-06-29 14:13:57 +00:00
import { Injectable } from '@nestjs/common';
import { LoginRequest } from './interfaces/auth.interface';
@Injectable()
export class AuthService {
async login(body: LoginRequest) {
return { test: body.email };
}
}