11 lines
164 B
Python
11 lines
164 B
Python
from django.urls import path
|
|
|
|
from shop.views import webhook
|
|
|
|
app_name = "shop"
|
|
|
|
|
|
urlpatterns = [
|
|
path("order/<str:uuid>/webhook/", webhook, name="webhook"),
|
|
]
|