summaryrefslogtreecommitdiff
path: root/tests/pkgs/includeapp1/root.py
blob: 986356d81fe463f9184d54f396c270308608eba8 (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('tests.pkgs.includeapp1.two.configure')
    config.commit()