urls.py 347 B

123456789101112
  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('alarm/', AlarmView.as_view()),
  8. path('group/', GroupView.as_view()),
  9. path('contact/', ContactView.as_view()),
  10. ]