You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
438 B
12 lines
438 B
from django.urls import path, include
|
|
from .views import *
|
|
|
|
urlpatterns = [
|
|
path('time/', ntp_time, name='ntptime'),
|
|
path('api/', epost, name='envpost'),
|
|
path('envchart/', chart_index, name='chartindex'),
|
|
path('cmdmanager/', sys_cmd, name='sysmanager'),
|
|
path('cmd/', cmd_query, name='cmd'),
|
|
path('cmdqueue/', cmd_queue, name='cmdqueue'),
|
|
path('deviceinfo/', query_deviceinfo, name='deviceinfo'),
|
|
]
|
|
|