6 lines
165 B
Python
6 lines
165 B
Python
from sqlalchemy.ext.declarative import declarative_base
|
|
Base = declarative_base()
|
|
|
|
from .lang import Lang
|
|
from .warn import Warn
|
|
# from .poll import Poll, Responses
|