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

8 lines
131 B
Python
Raw Normal View History

from __future__ import annotations
from app.models.base import QueryModel
class TenantScoped(QueryModel, table=False):
pass