reactor/test/support/example/hello_world_reactor.ex
2023-05-10 16:27:18 +12:00

12 lines
187 B
Elixir

defmodule Example.HelloWorldReactor do
@moduledoc false
use Reactor
input :whom
step :greet, Example.Step.Greeter do
argument :whom, input(:whom)
end
return :greet
end