13 lines
321 B
Python
13 lines
321 B
Python
|
|
from django.urls import path
|
|
|
|
from . import views
|
|
|
|
urlpatterns = [
|
|
path("start", views.start, name="start"),
|
|
path("stop", views.stop, name="stop"),
|
|
path("execute", views.execute, name="execute"),
|
|
path("get_logs", views.get_logs, name="get_logs"),
|
|
path("set_call", views.set_call, name="set_call"),
|
|
]
|