platform/configs/urls.py
2023-09-26 00:19:48 +03:00

10 lines
165 B
Python

from django.contrib import admin
from django.urls import path
from .views import *
urlpatterns = [
path(*ConfigsView.as_path()),
path('get', get_config)
]