blob: 65396e5de32915baea8ff7497eb84c59a4cefaac (
plain) (
tree)
|
|
#pragma once
#include "types.hh"
#include <string>
namespace nix {
struct DownloadResult
{
bool cached;
string data, etag;
};
DownloadResult downloadFile(string url, string expectedETag = "");
MakeError(DownloadError, Error)
}
|