Current section

Files

Jump to
commanded test support default_app.ex
Raw

test/support/default_app.ex

defmodule Commanded.DefaultApp do
alias Commanded.EventStore.Adapters.InMemory
alias Commanded.Serialization.JsonSerializer
use Commanded.Application,
otp_app: :commanded,
event_store: [
adapter: InMemory,
serializer: JsonSerializer
],
pubsub: :local,
registry: :local
end