mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-11 00:36:20 +02:00
31 lines
659 B
C++
31 lines
659 B
C++
|
#include "command.hh"
|
||
|
#include "common-args.hh"
|
||
|
#include "shared.hh"
|
||
|
#include "store-api.hh"
|
||
|
|
||
|
#include <nlohmann/json.hpp>
|
||
|
|
||
|
using namespace nix;
|
||
|
|
||
|
struct CmdDescribeStores : Command, MixJSON
|
||
|
{
|
||
|
std::string description() override
|
||
|
{
|
||
|
return "show registered store types and their available options";
|
||
|
}
|
||
|
|
||
|
Category category() override { return catUtility; }
|
||
|
|
||
|
void run() override
|
||
|
{
|
||
|
|
||
|
if (json) {
|
||
|
auto availableStores = *implementations;
|
||
|
} else {
|
||
|
throw Error("Only json is available for describe-stores");
|
||
|
}
|
||
|
}
|
||
|
};
|
||
|
|
||
|
static auto r1 = registerCommand<CmdDescribeStores>("describe-stores");
|