6 lines
94 B
Python
6 lines
94 B
Python
from django.urls import path
|
|
|
|
from .views import prova
|
|
|
|
urlpatterns = [path("prova/", prova)]
|