7 lines
130 B
Python
7 lines
130 B
Python
from django.urls import path
|
|
from Generator import views
|
|
from cars.saver import Saver
|
|
|
|
urlpatterns = [
|
|
path('', views.Saver)
|
|
] |