cartodb-4.42/services/synchronizer/lib/synchronizer/member.rb
2024-04-06 05:25:13 +00: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