diff --git a/crates_io_cdn_logs/src/cloudfront.rs b/crates_io_cdn_logs/src/cloudfront.rs index 1876c1a17bc..026c8ac17b5 100644 --- a/crates_io_cdn_logs/src/cloudfront.rs +++ b/crates_io_cdn_logs/src/cloudfront.rs @@ -1,3 +1,8 @@ +//! # CloudFront log parsing +//! +//! see +//! and . + use crate::paths::parse_path; use crate::DownloadsMap; use chrono::NaiveDate; diff --git a/crates_io_cdn_logs/src/fastly/mod.rs b/crates_io_cdn_logs/src/fastly/mod.rs index 8457922d081..0a3c8989eb4 100644 --- a/crates_io_cdn_logs/src/fastly/mod.rs +++ b/crates_io_cdn_logs/src/fastly/mod.rs @@ -1,3 +1,7 @@ +//! # Fastly CDN log parsing +//! +//! see . + mod json; use crate::paths::parse_path;