mirror of
https://github.com/seriousm4x/UpSnap.git
synced 2026-04-05 00:43:45 -04:00
8 lines
128 B
Python
8 lines
128 B
Python
from django.urls import path
|
|
|
|
from wol.consumers import WSConsumer
|
|
|
|
ws_urlpatterns = [
|
|
path("wol/", WSConsumer.as_asgi())
|
|
]
|