from django.urls import path
from . import views

app_name = 'perfil' 

urlpatterns = [
    path('', views.perfil_view, name='perfil'),
]