d5377e94eb
Django backend that listens to the relay SSE global stream and dispatches APNs push notifications to subscribed iOS devices (TestFlight/sandbox).
6 lines
106 B
Python
6 lines
106 B
Python
from django.urls import include, path
|
|
|
|
urlpatterns = [
|
|
path("", include("app.subscriptions.urls")),
|
|
]
|