mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
11 lines
217 B
Python
11 lines
217 B
Python
import warnings
|
|
|
|
from .webhooks import send_webhook as process_webhook
|
|
|
|
|
|
# TODO: Remove in v4.0
|
|
warnings.warn(
|
|
f"webhooks_worker.process_webhook has been moved to webhooks.send_webhook.",
|
|
DeprecationWarning
|
|
)
|