Skip to main content

ssg/audit/output/
mod.rs

1// Copyright © 2023 - 2026 Static Site Generator (SSG). All rights reserved.
2// SPDX-License-Identifier: Apache-2.0 OR MIT
3
4//! Output formatters for the audit report: rich text, JSON, `JUnit` XML,
5//! and SARIF v2.1.0.
6
7pub mod json;
8pub mod junit;
9pub mod sarif;
10pub mod text;