mirror of
https://github.com/eitchtee/WYGIWYH.git
synced 2026-03-18 07:24:00 +01:00
12 lines
150 B
Python
12 lines
150 B
Python
from django.urls import path
|
|
|
|
from . import views
|
|
|
|
urlpatterns = [
|
|
path(
|
|
"toasts/",
|
|
views.toasts,
|
|
name="toasts",
|
|
),
|
|
]
|