mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
11 lines
177 B
Python
11 lines
177 B
Python
from __future__ import unicode_literals
|
|
|
|
|
|
# CircuitTermination sides
|
|
TERM_SIDE_A = 'A'
|
|
TERM_SIDE_Z = 'Z'
|
|
TERM_SIDE_CHOICES = (
|
|
(TERM_SIDE_A, 'A'),
|
|
(TERM_SIDE_Z, 'Z'),
|
|
)
|