``` serviceProxy(s -> { s.pa...
# dsl
k
Copy code
serviceProxy(s -> {
            s.path("/api");
            s.target("localhost", 8080);
            return Unit.INSTANCE;
        });
this seems to be how to call it
1