pub trait TraversalServiceTrait {
type Graph: SwhOptFullGraph + Clone + Send + Sync + 'static;
// Required methods
fn try_get_node_id(&self, swhid: &str) -> Result<usize, Status>;
fn graph(&self) -> &Self::Graph;
fn statsd_client(&self) -> Option<&Arc<StatsdClient>>;
}