spug/spug_api/apps/alarm/urls.py

13 lines
347 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('alarm/', AlarmView.as_view()),
path('group/', GroupView.as_view()),
path('contact/', ContactView.as_view()),
]