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