mirror of
https://github.com/freqtrade/freqtrade.git
synced 2024-11-10 10:21:59 +00:00
9 lines
153 B
Python
9 lines
153 B
Python
from sqlalchemy.orm import DeclarativeBase, Session, scoped_session
|
|
|
|
|
|
SessionType = scoped_session[Session]
|
|
|
|
|
|
class ModelBase(DeclarativeBase):
|
|
pass
|