diff options
| author | TheSiahxyz <164138827+TheSiahxyz@users.noreply.github.com> | 2026-04-02 13:56:49 +0900 |
|---|---|---|
| committer | TheSiahxyz <164138827+TheSiahxyz@users.noreply.github.com> | 2026-04-02 13:56:49 +0900 |
| commit | 080662aaca7d9c3f80fa4dc990254b6b9585c311 (patch) | |
| tree | 77ffea9216d463c878cbba4002252b751c1ad3ad /services/news-collector/src/news_collector/config.py | |
| parent | 78177596179aeeeb7544509fcc31b2b4c86d7f98 (diff) | |
feat: scaffold news-collector service with BaseCollector
Diffstat (limited to 'services/news-collector/src/news_collector/config.py')
| -rw-r--r-- | services/news-collector/src/news_collector/config.py | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/services/news-collector/src/news_collector/config.py b/services/news-collector/src/news_collector/config.py new file mode 100644 index 0000000..70d98f1 --- /dev/null +++ b/services/news-collector/src/news_collector/config.py @@ -0,0 +1,10 @@ +"""News Collector configuration.""" + +from shared.config import Settings + + +class NewsCollectorConfig(Settings): + health_port: int = 8084 + finnhub_api_key: str = "" + news_poll_interval: int = 300 + sentiment_aggregate_interval: int = 900 |
