//! Context module for Nargo.
/// Nargo execution context.
#[derive(Debug, Clone)]pubstructNargoContext{/// Configuration.
pubconfig:serde_json::Value,
}implNargoContext{/// Create a new context with the given configuration.
pubfnnew(config:serde_json::Value)->Self{Self{ config }}}