// This is free and unencumbered software released into the public domain.
usecrate::{Read,Result, Url};/// See: https://en.wikipedia.org/wiki/Standard_streams#Standard_input_(stdin)
pubfnopen<'a, 'b>(_url:&'aUrl<'b>)->Result<Box<dyn Read>>{Ok(Box::new(std::io::stdin().lock()))}