mirror of
https://github.com/crystelf/crystelf-core.git
synced 2025-10-14 05:19:19 +00:00
15 lines
528 B
TypeScript
15 lines
528 B
TypeScript
import { Module } from '@nestjs/common';
|
|
import { WordsController } from './words.controller';
|
|
import { WordsService } from './words.service';
|
|
import { PathModule } from '../../core/path/path.module';
|
|
import { ToolsModule } from '../../core/tools/tools.module';
|
|
import { AutoUpdateModule } from '../../core/auto-update/auto-update.module';
|
|
|
|
@Module({
|
|
imports: [PathModule, ToolsModule, AutoUpdateModule],
|
|
controllers: [WordsController],
|
|
providers: [WordsService],
|
|
exports: [WordsService],
|
|
})
|
|
export class WordsModule {}
|