mirror of
https://github.com/nikdoof/test-auth.git
synced 2025-12-13 22:32:15 +00:00
11 lines
392 B
Python
11 lines
392 B
Python
from django.conf.urls.defaults import *
|
|
|
|
from eve_proxy.views import EVEAPIProxyView
|
|
|
|
urlpatterns = patterns('eve_proxy.views',
|
|
# This view can be used just like EVE API's http://api.eve-online.com.
|
|
# Any parameters or URL paths are sent through the cache system and
|
|
# forwarded to the EVE API site as needed.
|
|
url(r'^', EVEAPIProxyView.as_view(), name='eveproxy-apiproxy'),
|
|
)
|