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.
13 lines
322 B
13 lines
322 B
from django.urls import path
|
|
from .views import *
|
|
|
|
|
|
app_name='app'
|
|
|
|
|
|
urlpatterns = [
|
|
path('', index_view, name="index"),
|
|
path('_send_command', recieve_command, name="send_command"),
|
|
path('_system_shutdown', system_shutdown, name="system_shutdown"),
|
|
path('_get_module_data', send_module_data, name='get_module_data'),
|
|
]
|