fix(api): widget throttling and orchestrator endpoints #624

Merged
jason.woltje merged 2 commits from fix/orchestrator-widgets into main 2026-03-01 19:22:21 +00:00
Showing only changes of commit 869bf88104 - Show all commits

View File

@@ -1,9 +1,10 @@
import { Module } from "@nestjs/common";
import { AuthModule } from "../auth/auth.module";
import { PrismaModule } from "../prisma/prisma.module";
import { OrchestratorController } from "./orchestrator.controller";
@Module({
imports: [PrismaModule],
imports: [AuthModule, PrismaModule],
controllers: [OrchestratorController],
})
export class OrchestratorModule {}