//! Administrative utilities for configuring host features and config
//!
//! This module provides functions to enable host capabilities, read runtime
//! configuration
use crate;
/// Enables one or more host features and returns the host result code.
///
/// Combine feature flags with bitwise OR (e.g., `BufferRequest | BufferResponse`)
/// to enable multiple capabilities in a single call. The return value is the
/// host-provided status code.
/// Returns the raw configuration bytes provided by the host.
///
/// The host controls the configuration payload; interpret it according to your
/// plugin’s configuration format (for example, JSON or protobuf).