linuxkit-utils 0.1.0

an utility to compose linuxkit manifests
Documentation
1
2
3
4
5
6
7
use super::*;

impl EnvSubst for String {
    fn env_subst(&self, context: &HashMap<String, String>) -> Result<Self, SubstError> {
        ::envsubst::substitute(self, context)
    }
}