Rename links utils mod

This commit is contained in:
Vincent Prouillet 2022-05-02 22:07:47 +02:00
parent e8b04bb11a
commit a0630efb76
4 changed files with 3 additions and 3 deletions

View File

@ -20,8 +20,8 @@ use crate::library::Library;
use crate::ser::SerializingPage;
use crate::utils::get_reading_analytics;
use crate::utils::{find_related_assets, has_anchor};
use utils::anchors::has_anchor_id;
use utils::fs::read_file;
use utils::links::has_anchor_id;
// Based on https://regex101.com/r/H2n38Z/1/tests
// A regex parsing RFC3339 date followed by {_,-}, some characters and ended by .md

View File

@ -9,7 +9,7 @@ use libs::reqwest::{blocking::Client, StatusCode};
use config::LinkChecker;
use errors::anyhow;
use utils::links::has_anchor_id;
use utils::anchors::has_anchor_id;
pub type Result = result::Result<StatusCode, String>;

View File

@ -1,6 +1,6 @@
pub mod anchors;
pub mod de;
pub mod fs;
pub mod links;
pub mod net;
pub mod site;
pub mod slugs;