mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-30 09:37:55 +00:00
8 lines
189 B
Rust
8 lines
189 B
Rust
use std::sync::Arc;
|
|
|
|
// Re-export everything from subxt-metadata here.
|
|
pub use subxt_metadata::*;
|
|
|
|
/// A cheaply clonable version of our [`Metadata`].
|
|
pub type ArcMetadata = Arc<Metadata>;
|