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    
Size: Mime:
# Copyright (c) 2014 TrilioData, Inc.
# All Rights Reserved.

try:
    from django.conf.urls.defaults import patterns, url, include
except Exception as ex:
       from django.conf.urls import url, include
       pass

from .views import IndexView

WORKLOADS = r'^(?P<workload_id>[^/]+)/%s$'

urlpatterns = [
	url(r'^$', IndexView.as_view(), name='index'), 
]