Ejemplo n.º 1
0
def contentRouter() -> Handler:
    b = RoutingByPathHandler()
    b.assembly = assemblyContent()
    b.rootURI = root_uri_content()
    return b
Ejemplo n.º 2
0
def errorsRouter() -> Handler:
    b = RoutingByPathHandler()
    b.assembly = assemblyErrorDelivery()
    b.rootURI = root_uri_errors()
    return b
Ejemplo n.º 3
0
def resourcesRouter() -> Handler:
    b = RoutingByPathHandler()
    b.assembly = assemblyResources()
    b.rootURI = root_uri_resources()
    return b
Ejemplo n.º 4
0
def contentRouter() -> Handler:
    b = RoutingByPathHandler()
    b.assembly = assemblyContent()
    b.rootURI = root_uri_content()
    return b
Ejemplo n.º 5
0
def resourcesRouterInternal() -> Handler:
    b = RoutingByPathHandler()
    b.assembly = assemblyRESTInternal()
    b.rootURI = root_uri_resources()
    return b
Ejemplo n.º 6
0
def errorsRouter() -> Handler:
    b = RoutingByPathHandler()
    b.assembly = assemblyErrorDelivery()
    b.rootURI = root_uri_errors()
    return b