auth module controllers carried

This commit is contained in:
2025-07-26 21:51:27 +03:00
parent 2e10de9758
commit f39dc541e1
58 changed files with 745 additions and 527 deletions

View File

@@ -1,4 +1,8 @@
import { Injectable } from '@nestjs/common';
@Injectable()
export class CreateService {}
export class CreatePasswordService {
async run(dto: any) {
return { message: 'Password created successfully' };
}
}