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

10 lines
223 B
TypeScript
Raw Normal View History

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