Code at the speed of thought – Zed is a high-performance, multiplayer code editor from the creators of Atom and Tree-sitter.
1use serde::{Deserialize, Serialize}; 2 3#[derive(Serialize, Deserialize)] 4pub struct GetRpcAddressResponse { 5 pub address: String, 6} 7 8pub const GET_RPC_ADDRESS_PATH: &'static str = "/api/rpc-address";