from zope.interface import Interface from zope.publisher.interfaces.browser import IBrowserRequest class IApplication(Interface): 'The application root' pass class IFolder(Interface): 'All folderish types we want to bind the resource to' pass class IJsonRequest(IBrowserRequest): 'Json requests' pass