urls.py 297 B

1234567891011
  1. # Copyright: (c) OpenSpug Organization. https://github.com/openspug/spug
  2. # Copyright: (c) <spug.dev@gmail.com>
  3. # Released under the AGPL-3.0 License.
  4. from django.urls import path
  5. from .views import *
  6. urlpatterns = [
  7. path('', FileView.as_view()),
  8. path('object/', ObjectView.as_view()),
  9. ]