Spaces:
Sleeping
Sleeping
David Prince
fix: add all missing local module stubs (remote_mcp_registry, mcp_auth, mcp_transport, etc)
cce8120 | from sqlalchemy import Column, Integer, String, Text | |
| from .database import Base | |
| class Test(Base): | |
| __tablename__ = "tests" | |
| id = Column(Integer, primary_key=True, index=True) | |
| name = Column(String(100), nullable=False, index=True) | |
| description = Column(Text, nullable=True) | |