mirror of https://github.com/jumpserver/jumpserver
wangruidong
3 months ago
committed by
Bryan
5 changed files with 26 additions and 0 deletions
@ -0,0 +1,7 @@
|
||||
from django.db.models import TextChoices |
||||
|
||||
|
||||
class ImportStatus(TextChoices): |
||||
ok = 'ok', 'Ok' |
||||
pending = 'pending', 'Pending' |
||||
error = 'error', 'Error' |
Loading…
Reference in new issue