lix/src/libexpr/download.hh
2015-04-09 12:12:50 +02:00

17 lines
208 B
C++

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