Hello, Is there way to access to call some endpoi...
# ktor
t
Hello, Is there way to access to call some endpoints internally? Example, I want to concatenate two endpoints:
Copy code
routing {
            get("/path") {
                // something
            }

            get("/other-path") {
                // something
            }

            get("/merge-path") {
                // call(/path) + (/other-path)
            }
        }