mirror of
https://github.com/scylladb/scylladb.git
synced 2026-05-23 00:02:37 +00:00
29 lines
417 B
C++
29 lines
417 B
C++
/*
|
|
* Copyright (C) 2025-present ScyllaDB
|
|
*/
|
|
|
|
/*
|
|
* SPDX-License-Identifier: LicenseRef-ScyllaDB-Source-Available-1.1
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <string_view>
|
|
#include <seastar/core/sstring.hh>
|
|
|
|
namespace db {
|
|
|
|
namespace view {
|
|
|
|
enum class build_status {
|
|
STARTED,
|
|
SUCCESS,
|
|
};
|
|
|
|
build_status build_status_from_string(std::string_view str);
|
|
seastar::sstring build_status_to_sstring(build_status status);
|
|
|
|
}
|
|
|
|
}
|