~singpolyma/sgx-jmp

ref: 8fd61ce689c290b5bd47253f1e0b9b6d67cc6eba sgx-jmp/lib/dummy_command.rb -rw-r--r-- 196 bytes
8fd61ce6Stephen Paul Weber Merge branch 'monthly-billing' 1 year, 1 day ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# frozen_string_literal: true

class DummyCommand
	attr_reader :customer

	def initialize(customer)
		@customer = customer
	end

	def reply(*); end

	def finish(*); end

	def log
		::LOG
	end
end