9 lines
136 B
Python
9 lines
136 B
Python
from django.contrib import admin
|
|
from django.urls import path
|
|
|
|
from .views import *
|
|
|
|
urlpatterns = [
|
|
path(*ConfigsView.as_path())
|
|
]
|