// Copyright (C) 2024-present ScyllaDB // SPDX-License-Identifier: LicenseRef-ScyllaDB-Source-Available-1.0 #pragma once #include namespace db { enum class auth_version_t: int64_t { v1 = 1, v2 = 2, }; }