refactor(common): move Policy types from types.rs into policy.rs

This commit is contained in:
michael
2026-04-27 06:22:54 -07:00
parent 57c97b492c
commit dc2c4b02cb
5 changed files with 85 additions and 72 deletions

View File

@@ -1,2 +1,6 @@
pub mod policy;
pub mod types;
// Convenience re-exports — Phase 1 clients imported these from `types`. Keep
// the path stable to avoid churn in daemon/cli.
pub use policy::{Firstrun, Policy, StackPolicy, Storage, StorageBackend};