Remove REST endpoints from zed-rpc

Co-Authored-By: Max Brunsfeld <max@zed.dev>
This commit is contained in:
Antonio Scandurra 2021-07-07 18:53:00 +02:00
parent cb9002254f
commit d0660f41de
2 changed files with 0 additions and 9 deletions

View file

@ -1,7 +1,6 @@
pub mod auth;
mod peer;
pub mod proto;
pub mod rest;
#[cfg(test)]
mod test;

View file

@ -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";