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
django-quasar-lista-compra/authentication/urls.py
clonbg b07813a859 Primer commit
iniciando proyecto
2023-02-16 11:40:04 +01:00

7 lines
132 B
Python

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