Implement skeleton network/sync framework.

This commit is contained in:
Age Manning
2019-03-04 18:31:01 +11:00
parent 3b8f29a914
commit b68adc1ae3
16 changed files with 147 additions and 39 deletions

View File

@@ -0,0 +1,11 @@
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 {}
}
}