
* new style with picocss * djlint * rate distribution * collection item drag to order * discover available for guest * search combine movie tv
10 lines
226 B
Python
10 lines
226 B
Python
from django.urls import path
|
|
from .views import *
|
|
|
|
app_name = "common"
|
|
urlpatterns = [
|
|
path("", home),
|
|
path("api-doc/", api_doc, name="api_doc"),
|
|
path("home/", home, name="home"),
|
|
path("me/", me, name="me"),
|
|
]
|