mirror of https://github.com/jumpserver/jumpserver
8 lines
160 B
Python
8 lines
160 B
Python
![]() |
from django.db.models import TextChoices
|
||
|
|
||
|
|
||
|
class ImportStatus(TextChoices):
|
||
|
ok = 'ok', 'Ok'
|
||
|
pending = 'pending', 'Pending'
|
||
|
error = 'error', 'Error'
|