# -*- coding: utf-8 -*- # !/usr/bin/env python """ 久恒接口对接 """ from django.conf.urls import patterns, url from .views import * urlpatterns = patterns('', url(r'^getPortStatusFromJh$', getPortStatusFromJh, name = 'getPortStatusFromJh'), url(r'^startDeviceForJh$', startDeviceForJh, name = 'startDeviceForJh'), url(r'^getPortInfoFromJh$', getPortInfoFromJh, name = 'getPortInfoFromJh'), url(r'^stopChargingPortForJh$', stopChargingPortForJh, name = 'stopChargingPortForJh'), )