11 lines
387 B
TypeScript
11 lines
387 B
TypeScript
// 根模块(B1 裁决:P2 起 GraphQL Yoga)
|
||
import { Module } from "@nestjs/common";
|
||
import { GraphQLModule } from "./graphql/graphql.module.js";
|
||
import { HealthModule } from "./shared/health/health.module.js";
|
||
import { MiddlewareModule } from "./middleware/middleware.module.js";
|
||
|
||
@Module({
|
||
imports: [GraphQLModule, HealthModule, MiddlewareModule],
|
||
})
|
||
export class AppModule {}
|