feat: support static server

This commit is contained in:
2025-06-18 02:19:42 +08:00
parent 35312ea1ff
commit 6726cafff4
26 changed files with 321 additions and 230 deletions

View File

@@ -21,6 +21,10 @@ impl OptDynErr {
pub fn none() -> Self {
Self(None)
}
pub fn into_inner(self) -> Option<Box<dyn std::error::Error + Send + Sync>> {
self.0
}
}
impl Display for OptDynErr {