YouPlot/lib/youplot/command/options.rb
2020-12-21 14:39:22 +09:00

19 lines
272 B
Ruby

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