mirror of
https://github.com/dragonpilot/dragonpilot.git
synced 2026-02-27 18:53:51 +08:00
8 lines
174 B
Python
8 lines
174 B
Python
from django.conf.urls import url, include
|
|
from jsonrpc.backend.django import api
|
|
|
|
urlpatterns = [
|
|
url(r'', include(api.urls)),
|
|
url(r'^prefix/', include(api.urls)),
|
|
]
|