YouPlot/lib/youplot/command/cmd_options.rb

19 lines
275 B
Ruby
Raw Normal View History

2020-12-14 14:54:54 +08:00
# frozen_string_literal: true
module YouPlot
class Command
CmdOptions = Struct.new(
:delimiter,
:transpose,
:headers,
:pass,
:output,
:fmt,
:encoding,
:color_names,
:debug,
keyword_init: true
)
end
end