6 lines
109 B
Python
6 lines
109 B
Python
from django.urls import path
|
|
from Generator import views
|
|
|
|
urlpatterns = [
|
|
path('', views.HexaGenerator)
|
|
] |