7 lines
91 B
Python
7 lines
91 B
Python
from .db import Database
|
|
from .base_class import Base
|
|
|
|
__all__ = ["Base"]
|
|
|
|
db = Database()
|