Files
MultiTenantSaaS/src/auth/auth.service.ts
2026-02-20 15:53:45 +05:45

14 lines
216 B
TypeScript

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