CMS_Django_Backend/apps/api/urls.py

7 lines
140 B
Python
Raw Normal View History

2024-08-18 20:51:27 +08:00
from django.urls import path
from apps.api import views
urlpatterns = [
path("getconfig/", views.getconfig, name="getconfig"),
]