mirror of
https://github.com/netbox-community/netbox.git
synced 2026-01-12 23:02:17 -06:00
12 lines
302 B
Python
12 lines
302 B
Python
import strawberry
|
|
|
|
from core.choices import *
|
|
|
|
__all__ = (
|
|
'DataSourceStatusEnum',
|
|
'ObjectChangeActionEnum',
|
|
)
|
|
|
|
DataSourceStatusEnum = strawberry.enum(DataSourceStatusChoices.as_enum(prefix='status'))
|
|
ObjectChangeActionEnum = strawberry.enum(ObjectChangeActionChoices.as_enum(prefix='action'))
|