linera-service 0.15.21

Executable for clients (aka CLI wallets), proxy (aka validator frontend) and servers of the Linera protocol.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
// Copyright (c) Zefchain Labs, Inc.
// SPDX-License-Identifier: Apache-2.0

//! Helper module for the Linera CLI binary.

/// The command-line subcommands for the Linera client binary.
pub mod command;
/// Options shared across multiple command-line subcommands.
pub mod common_options;
/// Helpers for the `net up` command that spins up a local network.
pub mod net_up_utils;
pub mod validator;
pub mod validator_benchmark;