linera_storage_service/
lib.rs

1// Copyright (c) Zefchain Labs, Inc.
2// SPDX-License-Identifier: Apache-2.0
3
4//! This module provides a shared key-value store server based on the RocksDB store and the in-memory store of `linera-views`.
5//! The corresponding client implements the `KeyValueStore` and `AdminKeyValueStore` traits.
6
7#![deny(clippy::large_futures)]
8
9pub mod key_value_store {
10    tonic::include_proto!("key_value_store.v1");
11}
12
13pub mod child;
14pub mod client;
15pub mod common;