mirror of
https://github.com/netbox-community/netbox.git
synced 2025-12-18 02:06:22 +00:00
12 lines
279 B
Python
12 lines
279 B
Python
import strawberry
|
|
|
|
from virtualization.choices import *
|
|
|
|
__all__ = (
|
|
'ClusterStatusEnum',
|
|
'VirtualMachineStatusEnum',
|
|
)
|
|
|
|
ClusterStatusEnum = strawberry.enum(ClusterStatusChoices.as_enum())
|
|
VirtualMachineStatusEnum = strawberry.enum(VirtualMachineStatusChoices.as_enum())
|