objstor 0.4.20

One stop for storing all your data.
Documentation
use trillium::Conn;

pub async fn remove_server_response_header(mut conn: Conn) -> Conn {
    conn.headers_mut().remove("Server");
    conn
}