thang an bi ngu

This commit is contained in:
2024-10-06 20:42:02 +07:00
parent 7b678a7ef2
commit 83b453c3b8
9 changed files with 202 additions and 23 deletions

View File

@@ -1,11 +1,13 @@
import { Module } from '@nestjs/common';
import { GraphqlModule } from './graphql/graphql.module';
import { ClerkModule } from './clerk/clerk.module';
import { RestfulModule } from './restful/restful.module';
@Module({
imports: [
GraphqlModule, // GraphQL setup
ClerkModule, // Clerk setup
RestfulModule, // RESTful API module
],
})
export class AppModule {}