tvl-depot/src/libexpr/download.hh
2015-04-09 12:49:13 +02:00

18 lines
241 B
C++

#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)
}