This repository has been archived on 2021-04-21. You can view files and clone it, but cannot push or open issues or pull requests.
djangoldp-webpushnotification/djangoldp_webpushnotification/urls.py
2021-04-08 14:20:14 +01:00

10 lines
220 B
Python

from django.urls import include, path
from django.views.generic import TemplateView
from .views import home, send_push
urlpatterns = [
path("send_push", send_push),
path("webpush/", include("webpush.urls")),
]