move src/server/h2service.rs into proxmox-rest-server crate

This commit is contained in:
Dietmar Maurer
2021-09-23 12:38:09 +02:00
parent ae18c436dd
commit f7348a23cd
6 changed files with 11 additions and 18 deletions

View File

@ -30,11 +30,14 @@ mod api_config;
pub use api_config::ApiConfig;
mod rest;
pub use rest::{RestServer, handle_api_request};
pub use rest::RestServer;
mod worker_task;
pub use worker_task::*;
mod h2service;
pub use h2service::*;
pub enum AuthError {
Generic(Error),
NoData,