urls.py 160 B

1234567
  1. # coding=utf-8
  2. from django.conf.urls import url
  3. from .views import *
  4. urlpatterns = [
  5. url(r'^wechat_notify/(?P<appid>.+)/$', WechatNotifyView.as_view()),
  6. ]