# -*- coding: utf-8 -*- # !/usr/bin/env python """ 一体板接口对接 """ from django.conf.urls import patterns, url from .views import * urlpatterns = patterns('', url(r'^startDeviceForYtb$', startDeviceForYtb, name = 'startDeviceForYtb'), url(r'^getPortStatusFromYtb$', getPortStatusFromYtb, name = 'getPortStatusFromYtb'), url(r'^getPortInfoFromYtb$', getPortInfoFromYtb, name = 'getPortInfoFromYtb'), url(r'^stopChargingPortForYtb$', stopChargingPortForYtb, name = 'stopChargingPortForYtb'), )