Files
scylladb/api/storage_proxy.hh
Pavel Emelyanov 7ef7b05397 api: Remove storage_service argument from storage_proxy setup
The code setting up storage_proxy/ endpoints no longer needs
storage_service and related decoration

Signed-off-by: Pavel Emelyanov <xemul@scylladb.com>
2023-09-29 14:10:09 +03:00

20 lines
313 B
C++

/*
* Copyright (C) 2015-present ScyllaDB
*/
/*
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
#pragma once
#include <seastar/core/sharded.hh>
#include "api.hh"
namespace api {
void set_storage_proxy(http_context& ctx, httpd::routes& r);
void unset_storage_proxy(http_context& ctx, httpd::routes& r);
}