feat: add customer details to customer entity

This commit is contained in:
Abdalhamid Alhamad
2025-05-19 14:16:18 +03:00
parent 35ab3df7c1
commit 881d88c8d8
6 changed files with 56 additions and 0 deletions

View File

@ -0,0 +1,8 @@
import { Module } from '@nestjs/common';
@Module({
imports: [],
controllers: [],
providers: [],
})
export class NeoLeapModule {}

View File

@ -0,0 +1,6 @@
import { Injectable } from '@nestjs/common';
@Injectable()
export class NeoLeapService {
createApplication() {}
}