mystuff 0.1.2

MyStuff: links, wiki, log journal, etc.
Documentation
1
2
3
4
5
6
7
8
use serde::{Deserialize, Serialize};

#[derive(Clone, Debug, Deserialize, Serialize)]
pub struct Link {
    pub url: String,
    pub description: String,
    pub tags: Vec<String>,
}