mirror of https://github.com/ghostfolio/ghostfolio
committed by
GitHub
11 changed files with 65 additions and 29 deletions
@ -1,13 +1,19 @@ |
|||
import { SymbolModule } from '@ghostfolio/api/app/symbol/symbol.module'; |
|||
import { BenchmarkModule } from '@ghostfolio/api/services/benchmark/benchmark.module'; |
|||
import { ConfigurationModule } from '@ghostfolio/api/services/configuration/configuration.module'; |
|||
import { DataProviderModule } from '@ghostfolio/api/services/data-provider/data-provider.module'; |
|||
import { TwitterBotService } from '@ghostfolio/api/services/twitter-bot/twitter-bot.service'; |
|||
|
|||
import { Module } from '@nestjs/common'; |
|||
|
|||
@Module({ |
|||
exports: [TwitterBotService], |
|||
imports: [BenchmarkModule, ConfigurationModule, SymbolModule], |
|||
imports: [ |
|||
BenchmarkModule, |
|||
ConfigurationModule, |
|||
DataProviderModule, |
|||
SymbolModule |
|||
], |
|||
providers: [TwitterBotService] |
|||
}) |
|||
export class TwitterBotModule {} |
|||
|
|||
Loading…
Reference in new issue