mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
18 lines
247 B
Python
18 lines
247 B
Python
![]() |
from utilities.choices import ChoiceSet
|
||
|
|
||
|
|
||
|
#
|
||
|
# Import Choices
|
||
|
#
|
||
|
|
||
|
class ImportFormatChoices(ChoiceSet):
|
||
|
CSV = 'csv'
|
||
|
JSON = 'json'
|
||
|
YAML = 'yaml'
|
||
|
|
||
|
CHOICES = [
|
||
|
(CSV, 'CSV'),
|
||
|
(JSON, 'JSON'),
|
||
|
(YAML, 'YAML'),
|
||
|
]
|