10 lines
165 B
Python
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)
|
|
]
|