1
2
3
4
5
6
use crate::encoding::Binary;
use crate::errors::StdError;

pub type QueryResponse = Binary;

pub type QueryResult = Result<QueryResponse, StdError>;