# -*- coding: utf-8 -*- # !/usr/bin/env python from django.conf.urls import patterns, url from apps.web.wechat3rd.views import * urlpatterns = patterns('', url(r'^event$', componentEvents, name='events'), url(r'^auth/notify$', authNotify, name='authNotify'), url(r'^([^/]+)/callback$', authorizerEvents, name = 'authorizerEvents') )