pub trait Classifier: Send + Sync {
// Required method
fn classify(
&self,
call_target: &str,
context: &ClassifyContext,
) -> Option<Classification>;
}pub trait Classifier: Send + Sync {
// Required method
fn classify(
&self,
call_target: &str,
context: &ClassifyContext,
) -> Option<Classification>;
}