This commit is contained in:
2024-12-08 15:16:43 +03:00
parent ed33722449
commit 8fb349d74b
17 changed files with 251 additions and 4 deletions

9
schemas/urls.py Normal file
View File

@@ -0,0 +1,9 @@
from django.contrib import admin
from django.urls import path
from .views import *
urlpatterns = [
path(*SchemasView.as_path()),
path('get', get_schemas)
]