Add YouTube
This commit is contained in:
parent
ea242955d9
commit
5bdee66207
12 changed files with 214 additions and 1 deletions
16
youtube/urls.py
Normal file
16
youtube/urls.py
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
from typing import TYPE_CHECKING
|
||||
|
||||
from django.urls import path
|
||||
|
||||
from youtube import views
|
||||
|
||||
if TYPE_CHECKING:
|
||||
from django.urls.resolvers import URLPattern
|
||||
from django.urls.resolvers import URLResolver
|
||||
|
||||
app_name = "youtube"
|
||||
|
||||
|
||||
urlpatterns: list[URLPattern | URLResolver] = [
|
||||
path(route="", view=views.index, name="index"),
|
||||
]
|
||||
Loading…
Add table
Add a link
Reference in a new issue