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#![recursion_limit = "256"]
8
9pub mod cli;
10pub mod cli_wrappers;
11pub mod config;
12pub mod controller;
13pub mod node_service;
14pub mod project;
15pub mod query_subscription;
16pub mod storage;
17pub mod task_processor;
18pub mod tracing;
19pub mod util;
20pub mod wallet;
21pub use wallet::Wallet;