lib.itmens/common/urls.py

6 lines
136 B
Python
Raw Normal View History

2020-05-01 22:46:15 +08:00
from django.urls import path
from .views import *
app_name = "common"
urlpatterns = [path("", home), path("home/", home, name="home")]