MCPcopy Index your code
hub / github.com/dataease/SQLBot / check_email_format

Function check_email_format

backend/apps/system/crud/user.py:90–91  ·  view source on GitHub ↗
(email: str)

Source from the content-addressed store, hash-verified

88
89
90def check_email_format(email: str) -> bool:
91 return bool(EMAIL_REGEX.fullmatch(email))
92
93def check_pwd_format(pwd: str) -> bool:
94 return bool(PWD_REGEX.fullmatch(pwd))

Callers 2

createFunction · 0.90
updateFunction · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected