lighthouse/beacon_node/libp2p/src/service.rs

12 lines
246 B
Rust
Raw Normal View History

use slog::debug;
/// The configuration and state of the libp2p components for the beacon node.
pub struct Service {}
impl Service {
pub fn new(log: slog::Logger) -> Self {
debug!(log, "Service starting");
Service {}
}
}