Files
GlobalProtect-openconnect/crates/gpapi/src/portal/mod.rs
2024-01-28 11:41:48 +08:00

16 lines
268 B
Rust

mod config;
mod prelogin;
pub use config::*;
pub use prelogin::*;
use thiserror::Error;
#[derive(Error, Debug)]
pub enum PortalError {
#[error("Portal prelogin error: {0}")]
PreloginError(String),
#[error("Portal config error: {0}")]
ConfigError(String),
}