mirror of
https://github.com/red-data-tools/YouPlot.git
synced 2025-05-06 07:10:10 +08:00
19 lines
299 B
Ruby
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
|