Wei-Yu Chen | ad55cb8 | 2022-02-15 20:07:01 +0800 | [diff] [blame] | 1 | // SPDX-FileCopyrightText: 2020 The Magma Authors. |
2 | // SPDX-FileCopyrightText: 2022 Open Networking Foundation <support@opennetworking.org> | ||||
3 | // | ||||
4 | // SPDX-License-Identifier: BSD-3-Clause | ||||
5 | |||||
6 | syntax = "proto3"; | ||||
7 | |||||
8 | package magma.orc8r; | ||||
9 | option go_package = "magma/orc8r/lib/go/protos"; | ||||
10 | |||||
11 | message RedisState { | ||||
12 | bytes serialized_msg = 1; | ||||
13 | uint64 version = 2; | ||||
14 | bool is_garbage = 3; | ||||
15 | } | ||||
16 |