mirror of
https://github.com/logos-blockchain/logos-blockchain-pocs.git
synced 2026-02-14 18:13:10 +00:00
9 lines
293 B
Rust
9 lines
293 B
Rust
fn main() {
|
|
// Initialize tracing. In order to view logs, run `RUST_LOG=info cargo run`
|
|
tracing_subscriber::fmt()
|
|
.with_env_filter(tracing_subscriber::filter::EnvFilter::from_default_env())
|
|
.init();
|
|
|
|
println!("TODO: impl user side of the atomic asset transfer");
|
|
}
|