mirror of
https://github.com/freqtrade/freqtrade.git
synced 2024-11-10 10:21:59 +00:00
8 lines
108 B
Python
8 lines
108 B
Python
|
|
||
|
from typing import Any
|
||
|
|
||
|
from sqlalchemy.orm import declarative_base
|
||
|
|
||
|
|
||
|
_DECL_BASE: Any = declarative_base()
|