1
2
3
4
5
6
7
8
9
10
11
// Copyright 2019-2022 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;