blob: 7e37ce9141c44353359625b1d697484373ad5e3e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "../zen.h"
class DropCommand : public ZenCmdBase
{
public:
DropCommand();
~DropCommand();
virtual int Run(const ZenCliOptions& GlobalOptions, int argc, char** argv) override;
virtual cxxopts::Options* Options() override { return &m_Options; }
private:
cxxopts::Options m_Options{"drop", "Drop one or more cache buckets"};
std::vector<std::string> m_Positional;
std::string m_BucketName;
std::string m_HostName{"http://localhost:1337"};
};
|