feat: scaffold center and guild backend NestJS skeletons

This commit is contained in:
nav
2026-05-12 08:31:43 +00:00
parent 026be99393
commit 88bec71cf8
26 changed files with 3597 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
import { Body, Controller, Post } from '@nestjs/common';
@Controller('auth')
export class AuthController {
@Post('register')
register(@Body() body: Record<string, unknown>) {
return { status: 'todo', action: 'register', received: body };
}
@Post('login')
login(@Body() body: Record<string, unknown>) {
return { status: 'todo', action: 'login', received: body };
}
@Post('refresh')
refresh(@Body() body: Record<string, unknown>) {
return { status: 'todo', action: 'refresh', received: body };
}
}