11 lines
236 B
TypeScript
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();
|
|
}
|
|
}
|