dummy_command.rb

 1# frozen_string_literal: true
 2
 3class DummyCommand
 4	attr_reader :customer
 5
 6	def initialize(customer)
 7		@customer = customer
 8	end
 9
10	def reply(*); end
11
12	def finish(*); end
13
14	def log
15		::LOG
16	end
17end