kers/users/urls.py

8 lines
105 B
Python
Raw Normal View History

2020-07-22 02:21:29 +00:00
from django.urls import path
from . import views
urlpatterns = [
path('profile', views.profile),
]