fuware-be/fuware/core/message_code.py
2024-05-15 09:14:26 +00:00

9 lines
170 B
Python

class MessageCode:
CREATED_USER: str = 'CREATED_USER'
WRONG_INPUT: str = 'LOGIN_WRONG'
ACCOUNT_LOCK: str = 'USER_LOCK'
def message_code():
return MessageCode()