Files
twitch-drop-notifier/core/urls.py
2024-07-06 01:09:58 +02:00

19 lines
411 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="games/",
view=views.GameView.as_view(),
name="games",
),
path("webhooks/", views.WebhooksView.as_view(), name="webhooks"),
]