lib.itmens/common/urls.py
Henri Dickson 0ffd47ca96
new style
* new style with picocss
* djlint
* rate distribution
* collection item drag to order
* discover available for guest
* search combine movie tv
2023-05-20 11:01:18 -04:00

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"),
]