7 lines
141 B
Python
7 lines
141 B
Python
from django.urls import path
|
|
|
|
from .views import ProfileView
|
|
|
|
urlpatterns = [
|
|
path("profile/", ProfileView.as_view(), name="profile"),
|
|
]
|