Files
twitch-drop-notifier/core/urls.py
2024-08-02 05:10:23 +02:00

22 lines
481 B
Python

from __future__ import annotations
from django.urls import URLPattern, URLResolver, path
from core.views import game_view, index, reward_campaign_view
app_name: str = "core"
urlpatterns: list[URLPattern | URLResolver] = [
path(route="", view=index, name="index"),
path(
route="games/",
view=game_view,
name="games",
),
path(
route="reward_campaigns/",
view=reward_campaign_view,
name="reward_campaigns",
),
]