Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
wbcurrency / currency / urls.py
Size: Mime:
from django.urls import include, path
from rest_framework.routers import DefaultRouter

from .views.api.currency import CurrencyViewSet

router = DefaultRouter()
router.register(r'currency', CurrencyViewSet, base_name='currency')

urlpatterns = ([
    path('', include(router.urls)),
], 'currency')