Ekaropolus 0b8c403e55
All checks were successful
continuous-integration/drone/push Build is passing
whatsaap Bot statistics and activity
2025-05-19 23:49:29 -06:00

9 lines
272 B
Python

from django.urls import path
from . import views
urlpatterns = [
path('webhook/', views.webhook, name='webhook'),
path('webhook/verify/', views.webhook_verification, name='webhook_verification'),
path('stats/', views.whatsapp_stats, name='whatsapp_stats'),
]