11 lines
333 B
TypeScript
11 lines
333 B
TypeScript
// GraphQL 模块(B1 裁决:P2 起直接 GraphQL Yoga)
|
||
import { Module } from "@nestjs/common";
|
||
import { GraphQLController } from "./graphql.controller.js";
|
||
import { TeacherModule } from "../teacher/teacher.module.js";
|
||
|
||
@Module({
|
||
imports: [TeacherModule],
|
||
controllers: [GraphQLController],
|
||
})
|
||
export class GraphQLModule {}
|