public void configure()

in webhook/src/main/java/org/apache/camel/example/webhook/Application.java [35:42]


        public void configure() {
            restConfiguration().contextPath("/camel");


            from("webhook:telegram:bots")
                    .log("Received: ${body}");

        }