7 lines
135 B
Python
7 lines
135 B
Python
import uuid
|
|
from sqlalchemy.orm import declarative_base
|
|
|
|
Base = declarative_base()
|
|
|
|
def gen_uuid() -> str:
|
|
return str(uuid.uuid4()) |