Fix: Added task_id field to our Stamp struct

main
Óscar M. Lage 2021-11-18 20:56:51 +01:00
parent 90e02aaf40
commit 8a3a4520eb
1 changed files with 3 additions and 0 deletions

View File

@ -11,6 +11,9 @@ pub struct Stamp {
pub start: Option<String>,
pub end: Option<String>,
pub description: Option<String>,
pub task_id: Option<u32>,
}
impl Stamp {
#[tokio::main]
pub async fn add(&self, config_file: &PathBuf) -> reqwest::Response {