zed-rpc/src/lib.rs 🔗
@@ -1,7 +1,6 @@
pub mod auth;
mod peer;
pub mod proto;
-pub mod rest;
#[cfg(test)]
mod test;
Antonio Scandurra and Max Brunsfeld created
Co-Authored-By: Max Brunsfeld <max@zed.dev>
zed-rpc/src/lib.rs | 1 -
zed-rpc/src/rest.rs | 8 --------
2 files changed, 9 deletions(-)
@@ -1,7 +1,6 @@
pub mod auth;
mod peer;
pub mod proto;
-pub mod rest;
#[cfg(test)]
mod test;
@@ -1,8 +0,0 @@
-use serde::{Deserialize, Serialize};
-
-#[derive(Serialize, Deserialize)]
-pub struct GetRpcAddressResponse {
- pub address: String,
-}
-
-pub const GET_RPC_ADDRESS_PATH: &'static str = "/api/rpc-address";