mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 20:27:58 +00:00
8721d98dd6
* move benches into tests, ignore non-passing doctests * Rename sr-api folder * Move test-primitives to primitives, use that for sp-api doctests
10 lines
135 B
Rust
10 lines
135 B
Rust
use sp_runtime::traits::Block as BlockT;
|
|
|
|
sp_api::decl_runtime_apis! {
|
|
pub trait Api<Block: BlockT> {
|
|
fn test();
|
|
}
|
|
}
|
|
|
|
fn main() {}
|