Papipo/event_sourcing

View on GitHub
lib/event_sourcing/event/store.rb

Summary

Maintainability
A
0 mins
Test Coverage
require "event_sourcing/event"

module EventSourcing
  class Event
    module Store
      class ConcurrencyError < RuntimeError
      end
    end
  end
end