Forked from
Eclipse Projects / xfsc / Organization Credential Manager / OCM-Engine
361 commits behind the upstream repository.
-
Konstantin Tsabolov authoredKonstantin Tsabolov authored
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
agent.module.ts 356 B
import { Module } from '@nestjs/common';
import { ConfigModule } from '@nestjs/config';
import { AgentController } from './agent.controller.js';
import { AgentService } from './agent.service.js';
@Module({
imports: [ConfigModule],
providers: [AgentService],
controllers: [AgentController],
exports: [AgentService],
})
export class AgentModule {}