mirror of
https://github.com/openspug/spug.git
synced 2026-01-18 14:54:28 +00:00
11 lines
259 B
Python
11 lines
259 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()),
|
|
]
|