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
/*use std::collections::HashMap;
use serde::{Deserialize, Serialize};

#[derive(Serialize, Deserialize, Clone, Default, Debug)]
#[serde(rename_all = "camelCase")]
pub struct BookmarkList {
    bookmarks: HashMap<String, String>,
}

impl BookmarkList {
    pub fn bookmarks(&self) -> &HashMap<String, String> {
        &self.bookmarks
    }
}*/