Files
scylladb/db/auth_version.hh
Avi Kivity df3ee94467 db: system_keyspace: extract auth_version_t into its own header
Users of auth_version_t shouldn't need to include the heavyweight
system_keyspace.hh.
2024-09-28 16:31:50 +03:00

16 lines
203 B
C++

// Copyright (C) 2024-present ScyllaDB
// SPDX-License-Identifier: AGPL-3.0-or-later
#pragma once
#include <cstdint>
namespace db {
enum class auth_version_t: int64_t {
v1 = 1,
v2 = 2,
};
}