nxtnote-configfile-format 0.1.1-alpha

Helper functions to work with nxtnote config file
Documentation
use super::schema::settings;

#[derive(Queryable, Insertable, Identifiable, AsChangeset)]
#[primary_key(namespace, category, name)]
#[table_name = "settings"]
pub struct Setting {
    pub namespace: String,
    pub category: String,
    pub name: String,
    pub value: Vec<u8>,
}