mirror of
https://github.com/siderolabs/omni.git
synced 2025-08-07 01:56:59 +02:00
Fixes: https://github.com/siderolabs/omni/issues/858 Signed-off-by: Artem Chernyshev <artem.chernyshev@talos-systems.com>
12 lines
368 B
Go
12 lines
368 B
Go
// Copyright (c) 2025 Sidero Labs, Inc.
|
|
//
|
|
// Use of this software is governed by the Business Source License
|
|
// included in the LICENSE file.
|
|
|
|
package version
|
|
|
|
// API represents the current API version of the backend, and is checked by the clients for compatibility.
|
|
//
|
|
// When the backend API changes in a breaking way, this needs to be bumped.
|
|
const API uint32 = 1
|