mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 09:57:56 +00:00
6500b33df3
* Fix cycle dependency in `sp-runtime-interface` * Fixes tests
9 lines
108 B
Rust
9 lines
108 B
Rust
use sp_runtime_interface::runtime_interface;
|
|
|
|
#[runtime_interface]
|
|
trait Test {
|
|
fn test();
|
|
}
|
|
|
|
fn main() {}
|