use crate*;
pub use *;
/// Trivial wrapper for `__agent_info` host function.
/// Agent info input struct is `()` so the function call simply looks like this:
///
/// ```ignore
/// let agent_info = agent_info()?;
/// ```
///
/// the [AgentInfo] is the current agent's original pubkey/address that they joined the network with
/// and their most recent pubkey/address.
/// Get the context for a zome call, including the provenance and chain head.
///
/// See [CallInfo] for more details of what is returned.
///
/// Call info input struct is `()` so the function call simply looks like this:
///
/// ```ignore
/// let call_info = call_info()?;
/// ```