mirror of
https://github.com/scylladb/scylladb.git
synced 2026-04-20 00:20:47 +00:00
19 lines
419 B
C++
19 lines
419 B
C++
/*
|
|
* Copyright (C) 2018-present ScyllaDB
|
|
*/
|
|
|
|
/*
|
|
* SPDX-License-Identifier: LicenseRef-ScyllaDB-Source-Available-1.1
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "api/api_init.hh"
|
|
#include <seastar/http/api_docs.hh>
|
|
|
|
namespace api {
|
|
|
|
void set_config(std::shared_ptr<httpd::api_registry_builder20> rb, http_context& ctx, httpd::routes& r, db::config& cfg, bool first = false);
|
|
void unset_config(http_context& ctx, httpd::routes& r);
|
|
}
|