lib.itmens/common/urls.py
2023-02-15 16:29:42 -05:00

9 lines
178 B
Python

from django.urls import path
from .views import *
app_name = "common"
urlpatterns = [
path("", home),
path("api-doc/", api_doc),
path("home/", home, name="home"),
]