Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 | 6x 6x 6x 6x 6x 6x 6x 6x 6x 6x 6x 6x 6x 6x 6x 6x 6x 6x 6x | import { Module } from '@nestjs/common';
import { SeedingService } from './seeding.service';
import { SystemPromptsModule } from '../system-prompts/system-prompts.module';
import { ContextTemplatesModule } from '../context-templates/context-templates.module';
import { SystemPromptSeedingService } from './system-prompt-seeding.service';
import { ContextTemplateSeedingService } from './context-template-seeding.service';
import { CustomSnippetsModule } from '../custom-snippets/custom-snippets.module';
import { CustomSnippetSeedingService } from './custom-snippet-seeding.service';
import { TypeOrmModule } from '@nestjs/typeorm';
import { McpConfig } from '../core-entities';
import { McpConfigSeedingService } from './mcp-config-seeding.service';
import { CustomVariablesModule } from '../custom-variables/custom-variables.module';
import { CustomVariableSeedingService } from './custom-variable-seeding.service';
import { SubAgentsModule } from '../sub-agents/sub-agents.module';
import { SubAgentSeedingService } from './sub-agent-seeding.service';
import { SubAgent } from '../sub-agents/sub-agent.entity';
import { ContextSnippetsModule } from '../context-snippets/context-snippets.module';
import { ContextSnippetSeedingService } from './context-snippet-seeding.service';
@Module({
imports: [
SystemPromptsModule,
ContextTemplatesModule,
CustomSnippetsModule,
CustomVariablesModule,
SubAgentsModule,
ContextSnippetsModule,
TypeOrmModule.forFeature([McpConfig, SubAgent]),
],
providers: [
SeedingService,
SystemPromptSeedingService,
ContextTemplateSeedingService,
CustomSnippetSeedingService,
McpConfigSeedingService,
CustomVariableSeedingService,
SubAgentSeedingService,
ContextSnippetSeedingService,
],
exports: [SeedingService],
})
export class SeedingModule {}
|