1// SPDX-License-Identifier: AGPL-3.0-or-later 2//! Prompt/system-prompt version tracking. 3 4pub mod diff; 5pub mod snapshot; 6pub mod types; 7 8pub use types::{PromptDiff, PromptFile, PromptSnapshot};