mirror of
https://git.proxmox.com/git/proxmox
synced 2025-05-19 11:37:47 +00:00
server/REST: make handle_request private
it's not used anywhere else, so do not suggest so Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
This commit is contained in:
parent
4becd202c5
commit
1fa5b1108d
@ -512,7 +512,7 @@ fn check_auth(
|
||||
Ok(userid)
|
||||
}
|
||||
|
||||
pub async fn handle_request(api: Arc<ApiConfig>, req: Request<Body>) -> Result<Response<Body>, Error> {
|
||||
async fn handle_request(api: Arc<ApiConfig>, req: Request<Body>) -> Result<Response<Body>, Error> {
|
||||
|
||||
let (parts, body) = req.into_parts();
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user