Current section

Files

Jump to
commanded test commands support consistency consistency_router.ex
Raw

test/commands/support/consistency/consistency_router.ex

defmodule Commanded.Commands.ConsistencyRouter do
use Commanded.Commands.Router
alias Commanded.Commands.ConsistencyAggregateRoot
alias ConsistencyAggregateRoot.{
ConsistencyCommand,
NoOpCommand,
RequestDispatchCommand,
}
dispatch [ConsistencyCommand,NoOpCommand,RequestDispatchCommand],
to: ConsistencyAggregateRoot,
identity: :uuid
end