# coding=utf-8 from django.conf.urls import url from .views import * urlpatterns = [ url(r'^wechat_notify/$', WechatNotifyView.as_view()), ]