|
|
|
//! Remote communication
|
|
|
|
|
|
|
|
#![allow(dead_code)]
|
|
|
|
|
|
|
|
#[macro_use] extern crate serde;
|
|
|
|
#[macro_use] extern crate pin_project;
|
|
|
|
|
|
|
|
#[allow(unused_imports)]
|
|
|
|
use color_eyre::{
|
|
|
|
eyre::{
|
|
|
|
self, eyre,
|
|
|
|
WrapErr,
|
|
|
|
},
|
|
|
|
SectionExt, Help,
|
|
|
|
};
|
|
|
|
#[allow(unused_imports)]
|
|
|
|
use std::convert::{
|
|
|
|
TryFrom,
|
|
|
|
TryInto,
|
|
|
|
};
|
|
|
|
|
|
|
|
mod message;
|
|
|
|
|
|
|
|
#[tokio::main]
|
|
|
|
async fn main() -> eyre::Result<()> {
|
|
|
|
println!("Hello, world!");
|
|
|
|
|
|
|
|
Ok(())
|
|
|
|
}
|