lib/helix/modules/passthrough_module.ex

defmodule Helix.Modules.PassthroughModule do

  use Helix.Modules.Module

  def handle_cast({:convey, event}, state) do
    ui_event(state)
    IO.inspect(event.value)
    {:noreply, convey(event.value, state)}
  end

end