"""The `tinvest` source: operations, snapshots and the instrument master from T-Invest.""" from fintracker.sources.registry import register from fintracker.sources.tinvest.sync import TinvestSource from fintracker.sources.tinvest.sync_events import TinvestEventsSource register(TinvestSource()) register(TinvestEventsSource()) __all__ = ["TinvestEventsSource", "TinvestSource"]