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

};