mirror of
https://github.com/yuezk/GlobalProtect-openconnect.git
synced 2025-05-20 07:26:58 -04:00
16 lines
268 B
Rust
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),
|
|
}
|