YouPlot/lib/youplot/options.rb
2021-06-03 10:48:47 +09:00

19 lines
299 B
Ruby

# frozen_string_literal: true
module YouPlot
# Command line options that are not Plot parameters
Options = Struct.new(
:delimiter,
:transpose,
:headers,
:pass,
:output,
:fmt,
:progressive,
:encoding,
:color_names,
:debug
# keyword_init: true
)
end