api/compat: drop api_handler submodule

Signed-off-by: Wolfgang Bumiller <w.bumiller@proxmox.com>
This commit is contained in:
Wolfgang Bumiller 2019-11-21 14:18:41 +01:00
parent 4f1963d259
commit cc4ecf80b0
3 changed files with 0 additions and 6 deletions

View File

@ -22,10 +22,6 @@ pub mod format;
pub use proxmox::api::schema::*; pub use proxmox::api::schema::*;
pub use proxmox::api::*; pub use proxmox::api::*;
pub mod api_handler {
pub use super::{ApiAsyncHandlerFn, ApiHandler, ApiHandlerFn, ApiFuture};
}
pub mod router { pub mod router {
pub use super::{ApiHandler, ApiMethod, HttpError, RpcEnvironment, RpcEnvironmentType}; pub use super::{ApiHandler, ApiMethod, HttpError, RpcEnvironment, RpcEnvironmentType};
pub use proxmox::api::router::*; pub use proxmox::api::router::*;

View File

@ -4,7 +4,6 @@ use serde_json::Value;
use std::collections::{HashMap, HashSet}; use std::collections::{HashMap, HashSet};
use crate::api_schema::*; use crate::api_schema::*;
use crate::api_schema::api_handler::*;
use crate::api_schema::router::*; use crate::api_schema::router::*;
use crate::api_schema::format::*; use crate::api_schema::format::*;
//use crate::api_schema::config::*; //use crate::api_schema::config::*;

View File

@ -19,7 +19,6 @@ use url::form_urlencoded;
use super::environment::RestEnvironment; use super::environment::RestEnvironment;
use super::formatter::*; use super::formatter::*;
use crate::api_schema::rpc_environment::*; use crate::api_schema::rpc_environment::*;
use crate::api_schema::api_handler::*;
use crate::api_schema::config::*; use crate::api_schema::config::*;
use crate::api_schema::router::*; use crate::api_schema::router::*;
use crate::api_schema::*; use crate::api_schema::*;