usecrate::{error::ShukaError,types::{FetchRequest, RawExplorerResponse},};/// Common interface for explorer adapters that can fetch contract source data.
pubtraitSourceExplorer{/// Fetches raw source-code data for the given request.
fnfetch(&self, request:&FetchRequest)->Result<RawExplorerResponse, ShukaError>;}