lib.itmens/common/urls.py

10 lines
179 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),
path("home/", home, name="home"),
path("me/", me, name="me"),
2023-02-15 15:45:57 -05:00
]