def contentRouter() -> Handler: b = RoutingByPathHandler() b.assembly = assemblyContent() b.rootURI = root_uri_content() return b
def errorsRouter() -> Handler: b = RoutingByPathHandler() b.assembly = assemblyErrorDelivery() b.rootURI = root_uri_errors() return b
def resourcesRouter() -> Handler: b = RoutingByPathHandler() b.assembly = assemblyResources() b.rootURI = root_uri_resources() return b
def resourcesRouterInternal() -> Handler: b = RoutingByPathHandler() b.assembly = assemblyRESTInternal() b.rootURI = root_uri_resources() return b