UNPKG

@vessl-ai/mcpctl-control-plane

Version:

Vessl MCP Control Plane service for managing distributed jobs.

14 lines (12 loc) 441 B
import { Module } from '@nestjs/common'; import { AppCacheModule } from '../cache/appcache.module'; import { SecretModule } from '../secret/secret.module'; import { ServerController } from './server.controller'; import { ServerService } from './server.service'; @Module({ controllers: [ServerController], providers: [ServerService], imports: [AppCacheModule, SecretModule], exports: [ServerService], }) export class ServerModule {}