lib.itmens/common/urls.py

10 lines
178 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"
2023-02-15 15:45:57 -05:00
urlpatterns = [
path("", home),
2023-02-15 15:49:41 -05:00
path("api-doc/", api_doc),
2023-02-15 15:45:57 -05:00
path("home/", home, name="home"),
]