blob: 489cc0d40f16ca6a0be8aa5292bf9b35e670fca8 [file] [log] [blame]
Wei-Yu Chenad55cb82022-02-15 20:07:01 +08001// 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
6syntax = "proto3";
7
8package magma.orc8r;
9option go_package = "magma/orc8r/lib/go/protos";
10
11message RedisState {
12 bytes serialized_msg = 1;
13 uint64 version = 2;
14 bool is_garbage = 3;
15}
16