from django.urls import path from .views import ChatMessageNotifyWebhookView urlpatterns = [ path('notify-message/', ChatMessageNotifyWebhookView.as_view(), name='chat-notify-message'), ]