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-16 13:11:32 +01:00

7 lines
136 B
Python

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