Last active
November 17, 2019 05:48
-
-
Save aballah-chamakh/6b483005f69a377a1ca02d9821ee1889 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from django.conf.urls import include | |
| from django.urls import path | |
| from rest_framework import routers | |
| from .views import InferenceViewSet | |
| router = routers.DefaultRouter() | |
| router.register('inference', InferenceViewSet) | |
| urlpatterns = [ | |
| path('', include(router.urls)), | |
| ] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment