module ServiceActor::Attributable

DSL to document the accepted attributes.

class CreateUser < Actor
  input :name
  output :name
end

Public Class Methods

included(base) click to toggle source
# File lib/service_actor/attributable.rb, line 11
def self.included(base)
  base.extend(ClassMethods)
end