Michael Merickel
2018-10-15 0c29cf2df41600d3906d521c72991c7686018b71
1
2
3
4
5
6
7
8
9
10
11
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()