kers/users/urls.py
2020-07-22 04:21:33 +02:00

8 lines
105 B
Python

from django.urls import path
from . import views
urlpatterns = [
path('profile', views.profile),
]