iravench/ruby_cqrs

View on GitHub
lib/ruby_cqrs/data/event_store.rb

Summary

Maintainability
A
0 mins
Test Coverage
module RubyCqrs
  module Data
    module EventStore
      def load_by guid, command_context
        raise NotImplementedError
      end

      def save changes, command_context
        raise NotImplementedError
      end
    end
  end
end