8 lines
154 B
Python
8 lines
154 B
Python
|
|
# amixr api url
|
||
|
|
REQUEST_URL = "https://amixr.io/api/v1"
|
||
|
|
|
||
|
|
# migration status
|
||
|
|
NOT_STARTED = "not_started"
|
||
|
|
IN_PROGRESS = "in_progress"
|
||
|
|
FINISHED = "finished"
|