mirror of
https://github.com/welton89/RRBEC.git
synced 2026-04-05 13:35:42 +00:00
13 lines
255 B
Python
13 lines
255 B
Python
|
|
from django.urls import path
|
|
from . import views
|
|
|
|
urlpatterns = [
|
|
path('', views.comandas, name='comandas'),
|
|
path('viewcomanda/', views.viewComanda, name='viewcomanda'),
|
|
path('createComanda/', views.createComanda, name='createComanda'),
|
|
|
|
|
|
|
|
]
|