mod events;
mod request;
#[derive(Debug, Clone, Default)]
pub struct GeminiScheme {
pub stream_function_call_arguments: bool,
}
impl GeminiScheme {
pub fn new() -> Self {
Self::default()
}
pub fn with_stream_function_call_arguments(mut self, enabled: bool) -> Self {
self.stream_function_call_arguments = enabled;
self
}
}