Async_ORM_Postgresql_Wrapper/Database/__init__.py
2021-10-05 05:14:45 -05:00

12 lines
208 B
Python

"""
See __main__.py for an example, further documentation can be found within both base.py and database.py
"""
from .base import Base
from .database import Database
__all__ = [
'Base',
'database'
]