refactor(server,common): introduce custom error types with thiserror and miette

This commit is contained in:
2026-02-11 16:29:59 +02:00
parent cda6024062
commit 818cfd5598
10 changed files with 134 additions and 61 deletions

View File

@@ -1,8 +1,10 @@
//! Common types and utilities for the TLS benchmark harness.
pub mod cert;
pub mod error;
pub mod protocol;
pub use error::Error;
use serde::{Deserialize, Serialize};
use std::fmt;
use strum::{Display, EnumString};