urls.py 382 B

12345678910111213
  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('', AppView.as_view()),
  8. path('kit/key/', kit_key),
  9. path('deploy/', DeployView.as_view()),
  10. path('deploy/<int:d_id>/versions/', get_versions),
  11. ]