Files
scylladb/api/commitlog.hh
Kefu Chai ffb5ad494f api: do not include unused headers
these unused includes were identified by clangd. see
https://clangd.llvm.org/guides/include-cleaner#unused-include-warning
for more details on the "Unused include" warning.

Signed-off-by: Kefu Chai <kefu.chai@scylladb.com>

Closes scylladb/scylladb#16973
2024-01-25 11:28:02 +03:00

20 lines
265 B
C++

/*
* Copyright (C) 2015-present ScyllaDB
*/
/*
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
#pragma once
namespace seastar::httpd {
class routes;
}
namespace api {
struct http_context;
void set_commitlog(http_context& ctx, seastar::httpd::routes& r);
}