operator-nodes-client 0.1.0

Ozon Operator Slashboard helps to monitor operator nodes getting slashed for mishaving while validating.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use axum::{
    Router,
    routing::{get, post},
};

use crate::handlers::operator::{register, status};

pub fn new_router() -> Router {
    Router::new()
        .route("/register", post(register))
        .route("/check", get(status))
}