1
2
3
4
5
6
7
8
9
use leaf_protocol::{components::Name, Component};

/// This is really just a test example to sanity check or view component hashes during development.
#[tokio::main]
pub async fn main() -> anyhow::Result<()> {
    println!("Name Schema ID: {}", Name::schema_id());
    println!("Name Schema ID: {:?}", Name::schema_id().as_bytes());
    Ok(())
}