check_urls 0.2.3

Verify the validity of URLs inside your files
1
2
3
4
5
6
7
/// A message contains an URL and a file
pub struct Message {
    /// The path from where the URL is coming from
    pub path: String,
    /// The url extracted
    pub url: String,
}