opsv2/libs/__init__.py
2020-12-01 16:31:04 +08:00

7 lines
191 B
Python

#!/usr/bin/env python
#-*- coding:utf-8 -*-
from libs.db.database import engine, Base, create_all, drop_all, db_session
__all__ = ['engine', 'Base', 'create_all', 'drop_all', 'db_session']