feat: bootstrap from Fabric monorepo
This commit is contained in:
10
src/nodes/nodes.module.ts
Normal file
10
src/nodes/nodes.module.ts
Normal file
@@ -0,0 +1,10 @@
|
||||
import { Module } from '@nestjs/common';
|
||||
import { TypeOrmModule } from '@nestjs/typeorm';
|
||||
import { NodesController } from './nodes.controller';
|
||||
import { GuildNode } from '../entities/guild-node.entity';
|
||||
|
||||
@Module({
|
||||
imports: [TypeOrmModule.forFeature([GuildNode])],
|
||||
controllers: [NodesController],
|
||||
})
|
||||
export class NodesModule {}
|
||||
Reference in New Issue
Block a user