mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-15 18:56:16 +02:00
22 lines
439 B
C++
22 lines
439 B
C++
|
#include "binary-cache-store.hh"
|
||
|
|
||
|
namespace nix {
|
||
|
|
||
|
struct HttpBinaryCacheStoreConfig : virtual BinaryCacheStoreConfig
|
||
|
{
|
||
|
using BinaryCacheStoreConfig::BinaryCacheStoreConfig;
|
||
|
|
||
|
HttpBinaryCacheStoreConfig(std::string_view scheme, std::string_view _cacheUri, const Params & params);
|
||
|
|
||
|
Path cacheUri;
|
||
|
|
||
|
const std::string name() override
|
||
|
{
|
||
|
return "HTTP Binary Cache Store";
|
||
|
}
|
||
|
|
||
|
std::string doc() override;
|
||
|
};
|
||
|
|
||
|
}
|