mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-25 11:47:56 +00:00
23c62f3d5d
* Update to 2024 edition * Update to 2024 edition; fmt, use<> and remove refs * async functions
15 lines
435 B
Rust
15 lines
435 B
Rust
// Copyright 2019-2025 Parity Technologies (UK) Ltd.
|
|
// This file is dual-licensed as Apache-2.0 or GPL-3.0.
|
|
// see LICENSE for license details.
|
|
|
|
//! Types associated with executing runtime API calls.
|
|
|
|
mod runtime_client;
|
|
mod runtime_types;
|
|
|
|
pub use runtime_client::RuntimeApiClient;
|
|
pub use runtime_types::RuntimeApi;
|
|
pub use subxt_core::runtime_api::payload::{
|
|
DefaultPayload, DynamicPayload, Payload, StaticPayload, dynamic,
|
|
};
|