mirror of
https://github.com/red-data-tools/YouPlot.git
synced 2025-05-06 23:21:13 +08:00
20 lines
292 B
Ruby
20 lines
292 B
Ruby
# frozen_string_literal: true
|
|
|
|
module YouPlot
|
|
class Command
|
|
Options = Struct.new(
|
|
:delimiter,
|
|
:transpose,
|
|
:headers,
|
|
:pass,
|
|
:progressive,
|
|
:output,
|
|
:fmt,
|
|
:encoding,
|
|
:color_names,
|
|
:debug,
|
|
keyword_init: true
|
|
)
|
|
end
|
|
end
|