forked from 0x2620/pandora
15 lines
196 B
Python
15 lines
196 B
Python
# -*- coding: utf-8 -*-
|
|
from django.urls import path
|
|
|
|
from . import views
|
|
|
|
from . import actions
|
|
actions.autodiscover()
|
|
|
|
urls = [
|
|
[
|
|
path(r'', views.api),
|
|
],
|
|
'api',
|
|
'api'
|
|
]
|