CMS_Django_Backend/apps/api/urls.py
2024-08-18 20:51:27 +08:00

7 lines
140 B
Python

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