add yellowstone grpc

This commit is contained in:
William
2025-01-23 17:48:10 +08:00
parent 429fc78ecf
commit 42b7267c2c
36 changed files with 897 additions and 3356 deletions
+13
View File
@@ -0,0 +1,13 @@
use anyhow::Error;
#[derive(Debug)]
#[allow(dead_code)]
pub struct AppError(Error);
impl<E> From<E> for AppError
where
E: Into<Error>,
{
fn from(err: E) -> Self {
Self(err.into())
}
}