anttp 0.26.0

AntTP is an HTTP server for the Autonomi Network
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/*use serde::{Deserialize, Serialize};
use utoipa::ToSchema;

#[derive(Serialize, Deserialize, ToSchema, Clone, Debug, PartialEq)]
pub struct KeyValue {
    pub content: String,
}

impl KeyValue {
    pub fn new(content: String) -> Self {
        Self {
            content,
        }
    }
}
*/