beaker 0.1.8

CosmWasm swiss-army knife configured for Osmosis by default, but trivial to make it work for other CosmWasm enabled chain.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
use data_doc_derive::GetDataDocs;
use serde::Deserialize;
use serde::Serialize;

#[derive(Serialize, Deserialize, GetDataDocs)]
pub struct TaskConfig {
    /// path to the directory where tasks are stored
    pub tasks_path: String,
}

impl Default for TaskConfig {
    fn default() -> Self {
        Self {
            tasks_path: "tasks".to_string(),
        }
    }
}