/eidetic-elixir

An event sourcing library for Elixir

Primary LanguageElixirMIT LicenseMIT

Eidetic (EventSourcing for Elixir)

Build Status

WARNING: This is under active development. Do NOT use

Initial implementation of an event sourced model that can be used in Elixir.

Creating Your First EventSourced Model

Please check out the examples

defmodule MyModel do
  use Eidetic.Model, fields: [forename: nil, surname: nil]
end