10 lines
166 B
Python
10 lines
166 B
Python
from django.contrib import admin
|
|
from django.urls import path
|
|
|
|
from .views import *
|
|
|
|
urlpatterns = [
|
|
path(*SchemasView.as_path()),
|
|
path('get', get_schemas)
|
|
]
|