1//! Output formatters for `agx validate` (and future commands that need 2//! both human and JSON output). 3 4mod human; 5mod json; 6 7pub use human::format_human; 8pub use json::format_json;