1//! A `values` is an object wrapper used to save a config data from the parser
2//!
3//! For now it just provide a [`StringValue`] type which is an object wrapper to save a string input type
4mod string;
5mod tuple;
67pub use string::Value as StringValue;
8pub use tuple::Value as TupleValue;