summaryrefslogtreecommitdiffstats
path: root/config/src/apps/vespa-configproxy-cmd/methods.h
blob: bb1abb0668e9aa1ce8dd1095948909c1b917ed8f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
#pragma once

#include <vespa/vespalib/stllike/string.h>

struct Method {
    const char *shortName;
    const char *rpcMethod;
    const int args;
};

namespace methods {

const Method find(const vespalib::string &name);
void dump();

};