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
7pub mod cli;
8pub mod cli_wrappers;
9pub mod config;
10pub mod controller;
11pub mod node_service;
12pub mod project;
13pub mod storage;
14pub mod task_processor;
15pub mod tracing;
16pub mod util;
17pub mod wallet;
18pub use wallet::Wallet;