blob: 369ab9f38665452e87c95dbe99dda228f70a5945 (
plain)
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()
|