stable/freqtrade/persistence/base.py

8 lines
108 B
Python
Raw Normal View History

from typing import Any
from sqlalchemy.orm import declarative_base
_DECL_BASE: Any = declarative_base()