kitsune2_showcase 0.4.1

kitsune2 p2p / dht showcase app
1
2
3
4
5
6
7
8
9
10
use serde::{Deserialize, Serialize};

#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub struct FileData {
    /// The name of the file to be stored
    pub name: String,

    // The contents of the file
    pub contents: String,
}