You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
rsh/src/main.rs

32 lines
496 B

//! Remote communication
#![cfg_attr(nightly, feature(const_fn_trait_bound))]
#![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 ext; use ext::*;
mod message;
#[tokio::main]
async fn main() -> eyre::Result<()> {
println!("Hello, world!");
Ok(())
}