7 lines
135 B
Python
7 lines
135 B
Python
from django.urls import path
|
|
from apps.api import views
|
|
|
|
urlpatterns = [
|
|
path("getconfig/", views.get_config, name="getconfig"),
|
|
]
|