1 2 3 4 5 6 7
use std::io::Result; /// ref. https://pkg.go.dev/github.com/ava-labs/avalanchego/health#Checkable #[tonic::async_trait] pub trait Checkable { async fn health_check(&self) -> Result<Vec<u8>>; }