csvtools
csvtools copied to clipboard
Error happened while compiling
Please take a look: https://github.com/nim-lang/Nim/issues/19966
I have not tried your example specifically, but from a quick look, it seems that the issue is that FushinItem
is a tuple and not an object, and tuples are not supported in csvtools.
See here:
The type T must be a flat object whose fields are numbers, strings or TimeInfo.
In short, try just changing tuple
into object
, and everything should work