wip: refactor parameters in UI start

This commit is contained in:
Dmitry Sharshakov 2021-08-29 10:23:36 +03:00
parent af657ef2ec
commit 2d42766a71
No known key found for this signature in database
GPG key ID: 471FD32E15FD8473
4 changed files with 58 additions and 34 deletions

View file

@ -7,7 +7,7 @@ use std::{collections::HashMap, path::PathBuf};
pub struct DebugTemplate {
pub name: String,
pub request: String,
pub completion: Option<Vec<String>>,
pub completion: Vec<String>,
pub args: HashMap<String, String>,
}