Add working prototype

This commit is contained in:
2024-06-22 05:33:42 +02:00
parent 67dc4639a0
commit e8f7e55135
60 changed files with 982 additions and 19571 deletions

@ -1,7 +1,11 @@
from django.contrib import admin
from django.urls import include, path
from __future__ import annotations
urlpatterns = [
path("admin/", admin.site.urls),
path("", include("twitch_drop_notifier.urls")),
from django.urls import URLPattern, path
from . import views
app_name: str = "core"
urlpatterns: list[URLPattern] = [
path(route="", view=views.index, name="index"),
]