bp_node 0.8.0-alpha.2

BP Node: bitcoin blockchain indexing and notification service
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// BP Node: bitcoin blockchain indexing and notification service
//
// Written in 2020-2022 by
//     Dr. Maxim Orlovsky <orlovsky@lnp-bp.org>
//
// Copyright (C) 2020-2022 by LNP/BP Standards Association, Switzerland.
//
// You should have received a copy of the MIT License along with this software.
// If not, see <https://opensource.org/licenses/MIT>.

mod service;
#[cfg(feature = "server")]
mod opts;

#[cfg(feature = "server")]
pub use opts::Opts;
pub use service::{run, Runtime};