mirror of
https://github.com/welton89/RRBEC.git
synced 2026-04-05 21:45:41 +00:00
11 lines
119 B
Python
11 lines
119 B
Python
|
|
from django.urls import path
|
|
from . import views
|
|
|
|
urlpatterns = [
|
|
path('', views.comandas, name='comandas'),
|
|
|
|
|
|
|
|
]
|