Files
twitch-drop-notifier/core/urls.py

12 lines
211 B
Python

from __future__ import annotations
from django.urls import URLPattern, path
from . import views
app_name: str = "core"
urlpatterns: list[URLPattern] = [
path(route="", view=views.index, name="index"),
]