Files
WYGIWYH/app/apps/common/urls.py
T
2024-09-26 11:00:40 -03:00

12 lines
150 B
Python

from django.urls import path
from . import views
urlpatterns = [
path(
"toasts/",
views.toasts,
name="toasts",
),
]