Files
openclaw-mission-control/backend/app/models/tenancy.py

8 lines
120 B
Python
Raw Normal View History

from __future__ import annotations
from sqlmodel import SQLModel
class TenantScoped(SQLModel, table=False):
pass