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