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 node_service;
11pub mod project;
12pub mod storage;
13pub mod util;
14pub mod wallet;