Michael Merickel
2018-10-15 81576ee51564c49d5ff3c1c07f214f22a8438231
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()