aboutsummaryrefslogtreecommitdiffstats
path: root/config/src/apps/vespa-configproxy-cmd/methods.h
blob: 35e162dd83add57774406edee6e27a7caa865e7e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Copyright Yahoo. 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();

};