Initial beacon node setup.

- Add network crate.
- Add sync crate.
- Add version crate.
- Add lighthouse configuration.
- Add network configuration.
This commit is contained in:
Age Manning
2019-02-28 10:24:27 +11:00
parent 45c6e0395f
commit 19a64f906e
17 changed files with 345 additions and 135 deletions

View File

@@ -0,0 +1,4 @@
/// This crate provides the network server for Lighthouse.
mod network_configuration;
pub use network_configuration::NetworkConfiguration;