1mod config; 2mod ipv8; 3 4pub use config::Config; 5use ipv8::IPv8; 6 7/** 8 * Create a new instance of IPv8. 9 */ 10pub fn new(config: Config) -> IPv8 { 11 return IPv8::new(config); 12}