| 39 | |
| 40 | |
| 41 | class WavesBind(Bind, table=True): |
| 42 | __table_args__: Dict[str, Any] = {"extend_existing": True} |
| 43 | uid: Optional[str] = Field(default=None, title="鸣潮UID") |
| 44 | pgr_uid: Optional[str] = Field(default=None, title="战双UID") |
| 45 | |
| 46 | |
| 47 | class WavesUser(User, table=True): |
nothing calls this directly
no outgoing calls
no test coverage detected