osiris icon indicating copy to clipboard operation
osiris copied to clipboard

Multiple lambdas under the same API

Open cjkent opened this issue 7 years ago • 0 comments

Something like:

api {
    lambda("fooLambda", FooComponents::class) {
        get("foo") { req ->
            ...
        }
    }
    lambda("barLambda", BarComponents::class) {
        get("bar") { req ->
            ...
        }
    }
}

cjkent avatar Jul 08 '17 08:07 cjkent