import { Module } from '@nestjs/common'; import { TypeOrmModule } from '@nestjs/typeorm'; import { GuildCommand } from '../entities/guild-command.entity.js'; import { CommandsController } from './commands.controller.js'; import { CommandsService } from './commands.service.js'; @Module({ imports: [TypeOrmModule.forFeature([GuildCommand])], controllers: [CommandsController], providers: [CommandsService], }) export class CommandsModule {}