Skip to main content

ta_changeset/
pr_package.rs

1//! pr_package.rs — Backwards compatibility re-exports for PRPackage → DraftPackage rename.
2//!
3//! This module re-exports all types from draft_package to maintain backwards compatibility
4//! during the terminology transition (v0.2.4).
5
6pub use crate::draft_package::*;
7
8// Explicit re-exports for clarity (these are already covered by the glob above)
9pub use crate::draft_package::{DraftPackage as PRPackage, DraftStatus as PRStatus};