index.community/backend/urls.py

28 lines
939 B
Python
Raw Normal View History

2018-08-26 00:13:46 +00:00
"""backend URL Configuration
The `urlpatterns` list routes URLs to views. For more information please see:
https://docs.djangoproject.com/en/2.1/topics/http/urls/
Examples:
Function views
1. Add an import: from my_app import views
2. Add a URL to urlpatterns: path('', views.home, name='home')
Class-based views
1. Add an import: from other_app.views import Home
2. Add a URL to urlpatterns: path('', Home.as_view(), name='home')
Including another URLconf
1. Import the include() function: from django.urls import include, path
2. Add a URL to urlpatterns: path('blog/', include('blog.urls'))
"""
2018-08-26 00:32:55 +00:00
from django.urls import path, include
from rest_framework import routers
from apiv1 import views
router = routers.DefaultRouter()
router.register(r'instances', views.InstanceViewSet)
2018-08-26 00:13:46 +00:00
urlpatterns = [
2018-08-27 01:11:11 +00:00
path(r'api/v1/', include(router.urls)),
path(r'silk/', include('silk.urls', namespace='silk')),
2018-08-26 00:13:46 +00:00
]
2018-08-26 22:12:24 +00:00