3bbb98d
1
2
3
4
5
6
7
8
9
10
import { Controller, Get } from '@nestjs/common'; @Controller('auth') export class AuthController { @Get('verify') verify() { return { status: 'ok' }; } }