18 lines
273 B
C++
18 lines
273 B
C++
/*
|
|
* Copyright (C) 2024-present ScyllaDB
|
|
*/
|
|
|
|
/*
|
|
* SPDX-License-Identifier: LicenseRef-ScyllaDB-Source-Available-1.0
|
|
*/
|
|
|
|
#pragma once
|
|
#include <cstddef>
|
|
|
|
#include "utils/upload_progress.hh"
|
|
|
|
namespace s3 {
|
|
class client;
|
|
using upload_progress = utils::upload_progress;
|
|
}
|