8 lines
247 B
Python
8 lines
247 B
Python
from django.urls import path, include
|
|
|
|
from core.apps.orders.views import order as order_views
|
|
|
|
urlpatterns = [
|
|
path('order/create/', order_views.OrderCreateApiView.as_view()),
|
|
path('order/list/', order_views.OrderListApiView.as_view()),
|
|
] |