Sandthorn/sandthorn

View on GitHub
lib/sandthorn/aggregate_root.rb

Summary

Maintainability
A
0 mins
Test Coverage
require 'sandthorn/aggregate_root_base'
require 'sandthorn/aggregate_root_marshal'

module Sandthorn
  module AggregateRoot
    include Base
    include Marshal

    def self.included(base)
      base.extend(Base::ClassMethods)
    end
  end
end