lib.itmens/common/urls.py
2023-01-01 23:50:57 -05:00

5 lines
136 B
Python

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