(
private authService: AuthService,
private jwtService: JwtService,
)
| 18 | @Controller('dyan/auth') |
| 19 | export class AuthController { |
| 20 | constructor( |
| 21 | private authService: AuthService, |
| 22 | private jwtService: JwtService, |
| 23 | ) {} |
| 24 | |
| 25 | @Get('me') |
| 26 | async me(@Req() req: Request) { |
nothing calls this directly
no outgoing calls
no test coverage detected