YouPlot/lib/youplot/options.rb
kojix2 29dfe424e7 Flatten the module hierarchy
Move Parser and Options up
2021-05-27 21:50:05 +09:00

18 lines
244 B
Ruby

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