oratos-core 0.1.0

Core types and scoring for Oratos website visibility audits
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Core types shared across Oratos crates.

mod audit;
mod finding;
mod location;
mod page;
mod score;

pub use audit::{AuditReport, AuditTarget, PageAudit, TargetKind};
pub use finding::{Category, Finding, Severity};
pub use location::Location;
pub use page::PageRef;
pub use score::{CategoryScores, ScoreBreakdown};