CMS_Django_Backend/apps/api/urls.py

7 lines
135 B
Python
Raw Normal View History

2024-11-03 22:00:42 +08:00
from django.urls import path
from apps.api import views
urlpatterns = [
path("getconfig/", views.get_config, name="getconfig"),
]