MCPcopy Create free account
hub / github.com/edmar/whenx / User

Class User

whenx/models/user.py:6–14  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

4
5
6class User(Base):
7 __tablename__ = "users"
8
9 id = Column(String, primary_key=True, default=lambda: str(uuid.uuid4()))
10 name = Column(String(50))
11 email = Column(String(120), unique=True)
12
13 def __repr__(self):
14 return "<User(name='%s', email='%s')>" % (self.name, self.email)

Callers 1

scoutFunction · 0.90

Calls

no outgoing calls

Tested by 1

scoutFunction · 0.72