Add the bones of the processor

This commit is contained in:
Luke Parker
2022-05-26 04:36:19 -04:00
parent 4ddb838a5a
commit c398b246ff
8 changed files with 136 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
use crate::{Coin, coins::monero::Monero};
#[tokio::test]
async fn test() {
println!("{}", Monero::new("http://127.0.0.1:18081".to_string()).get_height().await.unwrap());
}