Files
Edu/services/teacher-bff/src/teacher/teacher.module.ts
SpecialX 99155a5ea1 feat(teacher-bff): 完整实现 teacher-bff GraphQL 聚合层
包含 clients/graphql/middleware、health probes、shared-ts contracts 等
2026-07-10 19:10:07 +08:00

12 lines
371 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
// Teacher 模块B1 裁决P2 起 GraphQL不再使用 REST Controller
import { Module } from "@nestjs/common";
import { TeacherService } from "./teacher.service.js";
import { ClientsModule } from "../clients/clients.module.js";
@Module({
imports: [ClientsModule],
providers: [TeacherService],
exports: [TeacherService],
})
export class TeacherModule {}