lib/console/output/null.rb



# frozen_string_literal: true

# Released under the MIT License.
# Copyright, 2023, by Samuel Williams.

module Console
	module Output
		class Null
			def initialize(...)
			end
			
			def call(...)
				# Do nothing.
			end
		end
	end
end