Packages
commanded_utils
0.1.0
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
Current section
Files
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