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:
parent
9a7c917f36
commit
5cf18ad7c7
1 changed files with 0 additions and 2 deletions
|
|
@ -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,
|
||||
|
|
|
|||
Loading…
Reference in a new issue