Files
psp_api/src/modules/application/auth/auth.service.ts
T

15 lines
411 B
TypeScript
Raw Normal View History

2026-04-22 21:55:40 +03:30
import { AuthService } from '@/modules/auth/auth.service'
import { Injectable } from '@nestjs/common'
import { applicationLoginDto } from './dto/auth.dto'
@Injectable()
export class ApplicationAuthService {
constructor(private readonly authService: AuthService) {}
async login(data: applicationLoginDto) {
const loginResponse = await this.authService.login(data, true)
return loginResponse
}
}