Eidetic (EventSourcing for Elixir)

April 1, 2017 ยท View on GitHub

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