YouPlot/lib/youplot/command/options.rb

20 lines
292 B
Ruby

# frozen_string_literal: true
module YouPlot
class Command
Options = Struct.new(
:delimiter,
:transpose,
:headers,
:pass,
:output,
:fmt,
:progressive,
:encoding,
:color_names,
:debug,
keyword_init: true
)
end
end