Packages

Essential utilities and helpers for Commanded CQRS/ES applications. Provides type-safe commands, events, enrichment pipeline, error handling, and more.

Current section

Files

Jump to
commanded_utils lib commanded_utils.ex
Raw

lib/commanded_utils.ex

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