Initial commit

This commit is contained in:
Abdulaziz Axmadaliyev
2026-02-26 16:35:47 +05:00
commit 92165edbe6
2984 changed files with 629155 additions and 0 deletions

10
app/core/constants.py Normal file
View File

@@ -0,0 +1,10 @@
# Payme states
STATE_NEW = 0
STATE_CREATED = 1
STATE_COMPLETED = 2
STATE_CANCELLED = -1
# Payme error codes
ERROR_INVALID_AMOUNT = -31001
ERROR_TRANSACTION_NOT_FOUND = -31003
ERROR_CANNOT_PERFORM = -31008