import FileIO: load
"""
load(rf::RemoteFile)
Loads the contents of a remote file, downloading file if
it haven't been done previously, reading file from disk
and trying to infer the format from filename and/or magic
bytes in the file.
"""
function load(rf::RemoteFile)
if !isfile(rf)
download(rf)
end
load(path(rf))
end
Hello,
Following https://github.com/davidanthoff/Queryverse.jl/issues/6#issuecomment-406312750
load
function (callingFileIO.load
) should be implementedKind regards