summaryrefslogtreecommitdiff
path: root/tests/pkgs/includeapp1/root.py
blob: f56203cfaeed824cef63b172a21a74d35759fef9 (plain)
1
2
3
4
5
6
7
8
9
10
from pyramid.response import Response

def aview(request):
    return Response('root')

def configure(config):
    config.add_view(aview)
    config.include('pyramid.tests.pkgs.includeapp1.two.configure')
    config.commit()