# coding=utf-8 from django.conf.urls import patterns, url from apps.web.api.swap.views import queryToken, queryStationsInfo, queryStationStats, queryStationStatus, \ queryEquipAuth,queryEquipBusinessPolicy,query_start_charge,query_equip_charge_status,query_stop_charge urlpatterns = patterns('',*[ url(r'^wfl_kd/query_token$', queryToken, name = 'queryToken'), url(r'^wfl_kd/query_stations_info$', queryStationsInfo, name='queryStationsInfo'), url(r'^wfl_kd/query_station_stats$', queryStationStats, name='queryStationStats'), url(r'^wfl_kd/query_station_status$', queryStationStatus, name='queryStationStatus'), url(r'^wfl_kd/query_equip_auth$', queryEquipAuth, name='queryEquipAuth'), url(r'^wfl_kd/query_equip_business_policy$', queryEquipBusinessPolicy, name='queryEquipBusinessPolicy'), url(r'^wfl_kd/query_start_charge$', query_start_charge, name='query_start_charge'), url(r'^wfl_kd/query_equip_charge_status$', query_equip_charge_status, name='query_equip_charge_status'), url(r'^wfl_kd/query_stop_charge$', query_stop_charge, name='query_stop_charge'), ])