//! Defines the target interface for network requests.
//!
//! This module provides a trait that defines the structure of a network request target,
//! including the base URL, path, HTTP method, and request task.
use ;
/// Defines the interface for a network request target.
///
/// This trait provides methods to access the components of a network request:
/// - Base URL of the API
/// - Request path
/// - HTTP method
/// - Request task (body/parameters)
/// - Optional headers