fusen-register 0.8.3

RPC framework for service registration and discovery through API exposure, compatible with Dubbo3 protocol, intertunable with Java projects
Documentation
1
2
3
4
5
6
7
8
9
use thiserror::Error;

#[derive(Error, Debug)]
pub enum RegisterError {
    #[error("Error : {0}")]
    Error(Box<dyn std::error::Error>),
    #[error("Impossible")]
    Impossible,
}