CMS_Django_Backend/apps/api/urls.py
2024-11-03 22:00:42 +08:00

7 lines
135 B
Python

from django.urls import path
from apps.api import views
urlpatterns = [
path("getconfig/", views.get_config, name="getconfig"),
]