aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/clickhouse/src/Server/HTTPPathHints.cpp
blob: 51ef3eabffea0bd5d10f72cdc0d4c7e08df3f038 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include <Server/HTTPPathHints.h>

namespace DB
{

void HTTPPathHints::add(const String & http_path)
{
    http_paths.push_back(http_path);
}

std::vector<String> HTTPPathHints::getAllRegisteredNames() const
{
    return http_paths;
}

}