Update auto-generated bindings with new module structure
[ldk-c-bindings] / lightning-c-bindings / src / lightning / ln / mod.rs
1 // This file is Copyright its original authors, visible in version control
2 // history and in the source files from which this was generated.
3 //
4 // This file is licensed under the license available in the LICENSE or LICENSE.md
5 // file in the root of this repository or, if no such file exists, the same
6 // license as that which applies to the original source files from which this
7 // source was automatically generated.
8
9 //! High level lightning structs and impls live here.
10 //!
11 //! You probably want to create a channelmanager::ChannelManager, and a routing::NetGraphMsgHandler first.
12 //! Then, you probably want to pass them both on to a peer_handler::PeerManager and use that to
13 //! create/manage connections and call get_and_clear_pending_events after each action, handling
14 //! them appropriately.
15 //!
16 //! When you want to open/close a channel or send a payment, call into your ChannelManager and when
17 //! you want to learn things about the network topology (eg get a route for sending a payment),
18 //! call into your NetGraphMsgHandler.
19
20 use std::ffi::c_void;
21 use bitcoin::hashes::Hash;
22 use crate::c_types::*;
23
24 pub mod channelmanager;
25 pub mod msgs;
26 pub mod peer_handler;
27 pub mod chan_utils;
28 pub mod features;