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