feat(cli): move user and guild registration from API to local CLI

This commit is contained in:
nav
2026-05-14 14:43:59 +00:00
parent 7afd220b4a
commit 0b32dc8e3c
7 changed files with 123 additions and 95 deletions

View File

@@ -2,9 +2,12 @@ import { Module } from '@nestjs/common';
import { TypeOrmModule } from '@nestjs/typeorm';
import { NodesController } from './nodes.controller';
import { GuildNode } from '../entities/guild-node.entity';
import { NodeAdminService } from './node-admin.service';
@Module({
imports: [TypeOrmModule.forFeature([GuildNode])],
controllers: [NodesController],
providers: [NodeAdminService],
exports: [NodeAdminService],
})
export class NodesModule {}