Files
WYGIWYH/app/apps/common/urls.py
Herculino Trotta 50b0c6ce01 initial commit
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",
),
]