feat(teacher-bff): 完整实现 teacher-bff GraphQL 聚合层

包含 clients/graphql/middleware、health probes、shared-ts contracts 等
This commit is contained in:
SpecialX
2026-07-10 19:10:07 +08:00
parent b82593aac2
commit 99155a5ea1
37 changed files with 2862 additions and 324 deletions

View File

@@ -1,8 +1,10 @@
// 根模块B1 裁决P2 起 GraphQL Yoga
import { Module } from "@nestjs/common";
import { TeacherModule } from "./teacher/teacher.module.js";
import { GraphQLModule } from "./graphql/graphql.module.js";
import { HealthModule } from "./shared/health/health.module.js";
import { MiddlewareModule } from "./middleware/middleware.module.js";
@Module({
imports: [TeacherModule, HealthModule],
imports: [GraphQLModule, HealthModule, MiddlewareModule],
})
export class AppModule {}