camel-cli 0.38.0

Command-line interface for Apache Camel in Rust
1
2
3
4
5
6
7
8
9
10
11
# Sample route for camel test — see routes/hello.test.yaml
# The send to `log:done` is intercepted by the test document and diverted
# to `mock:result`, so no component dependency is needed to assert on it.
routes:
  - id: "hello"
    from: "direct:start"
    steps:
      - set_header:
          key: "source"
          value: "hello"
      - to: "log:done"