spug/spug_api/apps/monitor/urls.py

12 lines
288 B
Python

# Copyright: (c) OpenSpug Organization. https://github.com/openspug/spug
# Copyright: (c) <spug.dev@gmail.com>
# Released under the AGPL-3.0 License.
from django.urls import path
from .views import *
urlpatterns = [
path('', DetectionView.as_view()),
path('test/', run_test),
]