core: reformat file tree

This commit is contained in:
2023-10-25 16:50:05 +02:00
parent a6a86a67a5
commit e253631f09
41 changed files with 1 additions and 1 deletions

9
accounts/status_code.py Normal file
View File

@ -0,0 +1,9 @@
INVALID_USERNAME: str = "error: username invalid"
INVALID_PASSWORD: str = "error: password invalid"
INVALID_USERNAME_PASSWORD: str = "error: username or password invalid"
USERNAME_ALREADY_USED: str = "error: username already used"
USER_ADDED: str = "ok: user added"
USER_DELETED: str = "ok: account has been deleted"
USER_VALID: str = "ok: account valid"
PASSWORD_UPDATED: str = "ok: password has been updated"