| 7 | @ApiTags("auth") |
| 8 | @Controller() |
| 9 | export class AuthController { |
| 10 | constructor(private readonly authService: AuthService) {} |
| 11 | @Post("login") |
| 12 | async login(@Body() body: Credentials): Promise<UserInfo> { |
nothing calls this directly
no outgoing calls
no test coverage detected