]> git.proxmox.com Git - proxmox-backup.git/commitdiff
api/compat: drop api_handler submodule
authorWolfgang Bumiller <w.bumiller@proxmox.com>
Thu, 21 Nov 2019 13:18:41 +0000 (14:18 +0100)
committerWolfgang Bumiller <w.bumiller@proxmox.com>
Thu, 21 Nov 2019 13:18:41 +0000 (14:18 +0100)
Signed-off-by: Wolfgang Bumiller <w.bumiller@proxmox.com>
src/api_schema.rs
src/cli/command.rs
src/server/rest.rs

index d813620ce5c343e1fd35c900d258602b2c87a438..571fa29c27e6513f4695bed3909fd826860dd420 100644 (file)
@@ -22,10 +22,6 @@ pub mod format;
 pub use proxmox::api::schema::*;
 pub use proxmox::api::*;
 
-pub mod api_handler {
-    pub use super::{ApiAsyncHandlerFn, ApiHandler, ApiHandlerFn, ApiFuture};
-}
-
 pub mod router {
     pub use super::{ApiHandler, ApiMethod, HttpError, RpcEnvironment, RpcEnvironmentType};
     pub use proxmox::api::router::*;
index 69fc3b37ed7f68d4e5d2842dd9e57c62a1bace8d..f877885d162a0d88e9e85fa14a6768e4411fdeb0 100644 (file)
@@ -4,7 +4,6 @@ use serde_json::Value;
 use std::collections::{HashMap, HashSet};
 
 use crate::api_schema::*;
-use crate::api_schema::api_handler::*;
 use crate::api_schema::router::*;
 use crate::api_schema::format::*;
 //use crate::api_schema::config::*;
index f85ba398c1ddcdadf3ac2a3272053994c9270c74..f583afaa926060f0e58eab23e904a353bd082f16 100644 (file)
@@ -19,7 +19,6 @@ use url::form_urlencoded;
 use super::environment::RestEnvironment;
 use super::formatter::*;
 use crate::api_schema::rpc_environment::*;
-use crate::api_schema::api_handler::*;
 use crate::api_schema::config::*;
 use crate::api_schema::router::*;
 use crate::api_schema::*;