14 lines
302 B
Python
14 lines
302 B
Python
from __future__ import annotations
|
|
|
|
from django.urls import URLPattern, URLResolver, path
|
|
|
|
from . import views
|
|
|
|
app_name: str = "core"
|
|
|
|
|
|
urlpatterns: list[URLPattern | URLResolver] = [
|
|
path(route="", view=views.index, name="index"),
|
|
path(route="test/", view=views.test_webhook, name="test"),
|
|
]
|