8 lines
205 B
Python
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')
|
|
]
|