John Judd
John Judd
You could set you slice and pass it in variadic (`...`) fashion: ```go col := []string{"a","b"} goqu.From("test").Select(col...) ``` See also WithStruct example at https://pkg.go.dev/github.com/doug-martin/goqu/v9#SelectDataset.Select which may be more useful to...
Thanks for your bug report. One area of real neglect with vfs is interacting with Windows. I'm fairly certain our tests would fail miserably on Windows. I'll try to take...
This is something C2FO hasn't really had a use case for but I'm definitely open to improving it. Personally I've never liked the trio of List functions we provide. It...
@jlaffaye any chance we could get this merged?
This appears to have been fixed in https://github.com/jlaffaye/ftp/pull/354 but no new release has been created. Should work with pseudo modules by doing `go get github.com/jlaffaye/ftp@master` to pull in the latest...
## Alternatively: We could make `vfs.Filesystem` implement `fs.FS` so that you specify a the schema-less portion of the uri (authority + path) with `Open()`. Then both `vfs.Location` and `vfs.File` would...