lib.itmens/common/urls.py
2020-05-01 22:46:15 +08:00

10 lines
192 B
Python

from django.urls import path
from .views import *
app_name = 'common'
urlpatterns = [
path('', home),
path('home/', home, name='home'),
path('search/', search, name='search'),
]