Packages

Ex Saga is an NServiceBus Saga implementation in Elixir, while being abstracted away from storage and transport.

Current section

Files

Jump to
ex_saga lib ex_saga.ex
Raw

lib/ex_saga.ex

defmodule ExSaga do
@moduledoc """
Documentation for `ExSaga`.
"""
@doc """
Hello world.
## Examples
iex> ExSaga.hello()
:world
"""
def hello do
:world
end
end