initial work
This commit is contained in:
parent
8c885b2b24
commit
81e55a2134
13 changed files with 335 additions and 0 deletions
12
hub/broker/urls.py
Normal file
12
hub/broker/urls.py
Normal file
|
@ -0,0 +1,12 @@
|
|||
from django.urls import path, include
|
||||
from rest_framework.routers import DefaultRouter
|
||||
from .views import ServiceBrokerViewSet
|
||||
|
||||
app_name = "broker"
|
||||
|
||||
router = DefaultRouter(trailing_slash=False)
|
||||
router.register("v2", ServiceBrokerViewSet, basename="broker")
|
||||
|
||||
urlpatterns = [
|
||||
path("", include(router.urls)),
|
||||
]
|
Loading…
Add table
Add a link
Reference in a new issue