11 lines
348 B
Python
Executable File
11 lines
348 B
Python
Executable File
import os
|
|
|
|
from app.core.dispatcher import Dispatcher
|
|
from app.core.key_manager import KeyManager
|
|
from app.core.stats_exporter import StatsExporter
|
|
|
|
|
|
key_manager = KeyManager(os.getenv("KEY_CONFIG_PATH", "config/keys.yaml"))
|
|
dispatcher = Dispatcher(key_manager)
|
|
stats_exporter = StatsExporter(dispatcher, output_dir="stats", interval=10)
|