mirror of https://github.com/openspug/spug
13 lines
378 B
Python
13 lines
378 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 apps.pipeline.views import PipeView, DoView, handle_data_upload
|
|
|
|
urlpatterns = [
|
|
path('', PipeView.as_view()),
|
|
path('upload/', handle_data_upload),
|
|
path('do/', DoView.as_view()),
|
|
]
|