// Copyright 2022-2024 Gabriel Bjørnager Jensen. mod run; pub struct Client; impl Client { #[must_use] pub fn new() -> Self { Self } } impl Default for Client { #[inline(always)] fn default() -> Self { Self::new() } }