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