chore: models: remove pub(crate) from some fields (#707)

This commit is contained in:
William Woodruff 2025-04-28 22:37:17 -04:00 committed by GitHub
parent 7bde403f96
commit ac7db15708
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -86,7 +86,7 @@ pub(crate) struct Workflow {
pub(crate) key: InputKey,
/// A clickable (OSC 8) link to this workflow, if remote.
pub(crate) link: Option<String>,
pub(crate) document: yamlpath::Document,
document: yamlpath::Document,
pub(crate) line_index: LineIndex,
inner: workflow::Workflow,
}
@ -727,7 +727,7 @@ pub(crate) struct Action {
/// This action's unique key into zizmor's runtime registry.
pub(crate) key: InputKey,
pub(crate) link: Option<String>,
pub(crate) document: yamlpath::Document,
document: yamlpath::Document,
pub(crate) line_index: LineIndex,
inner: action::Action,
}