Packages

Building Blocks to write CQRS Event Sourcing apps in Elixir

Current section

Files

Jump to
workflow test domain conference commands.ex
Raw

test/domain/conference/commands.ex

defmodule Workflow.Domain.Conference.Commands do
defmodule MakeSeatReservation,
do: defstruct [uuid: nil]
defmodule CommitSeatReservation,
do: defstruct [uuid: nil]
defmodule CancelSeatReservation,
do: defstruct [uuid: nil]
end