Statistics
| Branch: | Tag: | Revision:

root / auth / urls.py @ 92c53da1

History | View | Annotate | Download (322 Bytes)

1
# vim: ts=4 sts=4 et ai sw=4 fileencoding=utf-8
2
#
3
# Copyright © 2010 Greek Research and Technology Network
4
#
5

    
6
from django.conf.urls.defaults import *
7
from piston.resource import Resource
8
from synnefo.auth.handlers import *
9

    
10
auth_handler = Resource(AuthHandler)
11

    
12
urlpatterns = patterns('',
13
    (r'^v1.0', auth_handler),
14
)