mirror of
https://github.com/netbox-community/netbox.git
synced 2025-12-09 01:49:35 -06:00
9 lines
158 B
Python
9 lines
158 B
Python
class JSONOrYAMLConverter:
|
|
regex = '.json|.yaml'
|
|
|
|
def to_python(self, value):
|
|
return value
|
|
|
|
def to_url(self, value):
|
|
return value
|