Forked from
Eclipse Projects / xfsc / Organization Credential Manager / OCM-Engine
278 commits behind the upstream repository.
-
Berend Sliedrecht authored
Signed-off-by:
Berend Sliedrecht <berend@animo.id>
Berend Sliedrecht authoredSigned-off-by:
Berend Sliedrecht <berend@animo.id>
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
connections.module.ts 435 B
import { Module } from '@nestjs/common';
import { ConfigModule } from '@nestjs/config';
import { AgentModule } from '../agent.module.js';
import { ConnectionsController } from './connections.controller.js';
import { ConnectionsService } from './connections.service.js';
@Module({
imports: [AgentModule, ConfigModule],
providers: [ConnectionsService],
controllers: [ConnectionsController],
})
export class ConnectionsModule {}