tvl-depot/src/libexpr/download.hh

17 lines
208 B
C++
Raw Normal View History

2015-04-09 12:12:50 +02:00
#pragma once
#include "types.hh"
#include <string>
namespace nix {
struct DownloadResult
{
bool cached;
string data, etag;
};
DownloadResult downloadFile(string url, string expectedETag = "");
}