import { Injectable } from '@nestjs/common'; import { Public } from './decorators'; @Injectable() @Public() export class AuthService { async login() {} async signup() {} @Public(false) async logout() {} }