lib.itmens/common/urls.py
2023-06-28 08:33:01 -04:00

9 lines
179 B
Python

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