linera_service/
lib.rs

1// Copyright (c) Facebook, Inc. and its affiliates.
2// Copyright (c) Zefchain Labs, Inc.
3// SPDX-License-Identifier: Apache-2.0
4
5//! This module provides the executables needed to operate a Linera service, including a placeholder wallet acting as a GraphQL service for user interfaces.
6
7#![deny(clippy::large_futures)]
8
9pub mod cli;
10pub mod cli_wrappers;
11pub mod node_service;
12pub mod project;
13#[cfg(with_metrics)]
14pub mod prometheus_server;
15pub mod storage;
16pub mod util;
17pub mod wallet;