// Copyright (c) 2026 Blacknon. All rights reserved.
// Use of this source code is governed by an MIT license
// that can be found in the LICENSE file.
#[derive(Clone, Debug, Eq, PartialEq)]pubstructProxyEnvVar{pubkey: String,
pubvalue: String,
}implProxyEnvVar{pubfnnew(key: impl Into<String>, value: impl Into<String>)->Self{Self{
key: key.into(),
value: value.into(),}}}