Files
cartodb/services/synchronizer/lib/synchronizer/member.rb
T
2020-06-15 10:58:47 +08:00

18 lines
244 B
Ruby

module CartoDB
module Synchronizer
class Member
def initialize(attributes={})
@attributes = attributes
end
def run
puts "running"
self
end
attr_reader :attributes
end
end
end