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