8 lines
241 B
Python
8 lines
241 B
Python
from __future__ import annotations
|
|
|
|
from govoplan_core.db.base import Base as AccessBase
|
|
from govoplan_core.db.base import NAMING_CONVENTION, TimestampMixin, utcnow
|
|
|
|
|
|
__all__ = ["AccessBase", "NAMING_CONVENTION", "TimestampMixin", "utcnow"]
|