//! Core abstractions for web server implementations.
//!
//! This crate provides the [`WebServer`] trait, which defines a common interface
//! for web server lifecycle management across different implementations.
use ;
/// A trait for managing the lifecycle of a web server.
///
/// Implementors of this trait provide asynchronous methods for starting and
/// stopping web server instances.