This repository has been archived on 2023-02-22. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
2023-02-20 08:04:59 +01:00

8 lines
205 B
Python

from django.urls import path
from . import views
urlpatterns = [
path('', views.HelloAuthView.as_view(), name='hello_auth'),
path('registro/', views.UserCreateView.as_view(), name='crear_user')
]