expand models.py to models/

This commit is contained in:
2026-05-16 04:18:12 +08:00
parent bc67f5a579
commit 3307ccf1ee
3 changed files with 18 additions and 12 deletions
+7
View File
@@ -0,0 +1,7 @@
import uuid
from sqlalchemy.orm import declarative_base
Base = declarative_base()
def gen_uuid() -> str:
return str(uuid.uuid4())