fix(#971): remove duplicate BindMount re-export in priv_client

BindMount was imported at line 10 via the priv_proto glob-style import,
then re-exported again with `pub use` at line 69. E0252: two definitions
of BindMount in the same type namespace. Remove the redundant pub use —
callers that need BindMount should import from hive_sh4re::priv_proto.
This commit is contained in:
atlas 2026-06-01 18:05:43 +02:00
commit 5cf18ad7c7

View file

@ -66,8 +66,6 @@ pub async fn write_nspawn_flags(container: &str, binds: &[BindMount]) -> Result<
}).await?)
}
pub use hive_sh4re::priv_proto::BindMount;
pub async fn write_resource_limits(
container: &str,
memory_max: &str,