7 lines
191 B
Python
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']
|