mirror of https://github.com/ghostfolio/ghostfolio
Browse Source
* Extend benchmarks with market condition and adapt twitter bot service * Update changelogpull/961/head
Thomas Kaul
3 years ago
committed by
GitHub
9 changed files with 103 additions and 3 deletions
@ -1,11 +1,13 @@ |
|||||
|
import { BenchmarkModule } from '@ghostfolio/api/app/benchmark/benchmark.module'; |
||||
import { SymbolModule } from '@ghostfolio/api/app/symbol/symbol.module'; |
import { SymbolModule } from '@ghostfolio/api/app/symbol/symbol.module'; |
||||
import { ConfigurationModule } from '@ghostfolio/api/services/configuration.module'; |
import { ConfigurationModule } from '@ghostfolio/api/services/configuration.module'; |
||||
|
import { PropertyModule } from '@ghostfolio/api/services/property/property.module'; |
||||
import { TwitterBotService } from '@ghostfolio/api/services/twitter-bot/twitter-bot.service'; |
import { TwitterBotService } from '@ghostfolio/api/services/twitter-bot/twitter-bot.service'; |
||||
import { Module } from '@nestjs/common'; |
import { Module } from '@nestjs/common'; |
||||
|
|
||||
@Module({ |
@Module({ |
||||
exports: [TwitterBotService], |
exports: [TwitterBotService], |
||||
imports: [ConfigurationModule, SymbolModule], |
imports: [BenchmarkModule, ConfigurationModule, PropertyModule, SymbolModule], |
||||
providers: [TwitterBotService] |
providers: [TwitterBotService] |
||||
}) |
}) |
||||
export class TwitterBotModule {} |
export class TwitterBotModule {} |
||||
|
Loading…
Reference in new issue