bracket-backend/src/common/modules/auth/auth.controller.ts
2025-02-07 12:47:58 +01:00

11 lines
236 B
TypeScript

import { Controller, Delete, NotImplementedException } from "@nestjs/common";
@Controller("auth")
export class AuthController {
constructor() {}
@Delete("logout/all")
logoutAll() {
throw new NotImplementedException();
}
}