Fixing file name casing

This commit is contained in:
2024-10-12 23:15:06 +07:00
parent 5c40a2fd53
commit 0e3aa751ce
29 changed files with 0 additions and 0 deletions

14
src/Clerk/clerk.module.ts Normal file
View File

@@ -0,0 +1,14 @@
import { Module, Global } from '@nestjs/common';
import Clerk from '@clerk/clerk-sdk-node';
@Global()
@Module({
providers: [
{
provide: 'CLERK',
useValue: Clerk,
},
],
exports: ['CLERK'],
})
export class ClerkModule {}