Support templates in debug configurations

This commit is contained in:
Dmitry Sharshakov 2021-08-24 20:04:14 +03:00
parent 31212e133d
commit b001008a69
No known key found for this signature in database
GPG key ID: 471FD32E15FD8473
3 changed files with 27 additions and 8 deletions

View file

@ -7,7 +7,7 @@ use std::{collections::HashMap, path::PathBuf};
pub struct DebugTemplate {
pub name: String,
pub request: String,
pub args: HashMap<String, Value>,
pub args: HashMap<String, String>,
}
#[derive(Debug, PartialEq, Clone, Deserialize, Serialize)]