You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

11 lines
238 B

  1. from django.conf.urls import url
  2. from backend import views
  3. from backend.controller import home
  4. urlpatterns = [
  5. url(r'^index/', views.index),
  6. url(r'^home/product', home.get_product),
  7. url(r'^home/curl_test', home.curl_test)
  8. ]