linera_service/cli/mod.rs
1// Copyright (c) Zefchain Labs, Inc.
2// SPDX-License-Identifier: Apache-2.0
3
4//! Helper module for the Linera CLI binary.
5
6/// The command-line subcommands for the Linera client binary.
7pub mod command;
8/// Options shared across multiple command-line subcommands.
9pub mod common_options;
10/// Helpers for the `net up` command that spins up a local network.
11pub mod net_up_utils;
12pub mod validator;
13pub mod validator_benchmark;