18 lines
376 B
INI
18 lines
376 B
INI
[pipeline:staccato-api]
|
|
pipeline = unauthenticated-context rootapp
|
|
|
|
[app:rootapp]
|
|
use = egg:Paste#urlmap
|
|
/: apiversions
|
|
/v1: apiv1app
|
|
|
|
[app:apiversions]
|
|
paste.app_factory = staccato.api.versions:create_resource
|
|
|
|
[app:apiv1app]
|
|
paste.app_factory = staccato.api.v1.xfer:create_resource
|
|
|
|
|
|
[filter:unauthenticated-context]
|
|
paste.filter_factory = staccato.wsgi:Middleware.factory
|