Files
twitch-drop-notifier/twitch_app/urls.py
2024-07-01 05:56:36 +02:00

11 lines
189 B
Python

from __future__ import annotations
from typing import TYPE_CHECKING
if TYPE_CHECKING:
from django.urls import URLPattern
app_name: str = "twitch"
urlpatterns: list[URLPattern] = []