1// Copyright (c) Mysten Labs, Inc. 2// SPDX-License-Identifier: Apache-2.0 3 4use jsonrpsee::proc_macros::rpc; 5 6#[rpc(client, namespace = "suix")] 7pub trait DeepBookApi { 8 #[method(name = "ping")] 9 async fn ping(&self) -> RpcResult<String>; 10}