mirror of
https://github.com/ChrisTitusTech/linutil.git
synced 2025-04-05 20:47:15 +01:00
fix: Remove unused imports. Comment scriptinfo fields
This commit is contained in:
parent
da2433d9d9
commit
9afadee250
10
src/tabs.rs
10
src/tabs.rs
@ -1,20 +1,24 @@
|
|||||||
use crate::running_command::Command;
|
use crate::running_command::Command;
|
||||||
use ego_tree::{tree, NodeId, Tree};
|
use ego_tree::{NodeId, Tree};
|
||||||
use serde::Deserialize;
|
use serde::Deserialize;
|
||||||
use std::{
|
use std::{
|
||||||
collections::{HashMap, HashSet},
|
collections::HashMap,
|
||||||
path::{Path, PathBuf},
|
path::{Path, PathBuf},
|
||||||
sync::LazyLock,
|
|
||||||
};
|
};
|
||||||
|
|
||||||
#[derive(Deserialize)]
|
#[derive(Deserialize)]
|
||||||
struct ScriptInfo {
|
struct ScriptInfo {
|
||||||
|
// Path to the script file in the UI, formatted as an array of directory names (first of which being the tab)
|
||||||
ui_path: Vec<String>,
|
ui_path: Vec<String>,
|
||||||
|
#[allow(dead_code)]
|
||||||
#[serde(default)]
|
#[serde(default)]
|
||||||
|
// Description: Currently unused field, should be added in the future
|
||||||
description: String,
|
description: String,
|
||||||
#[serde(default)]
|
#[serde(default)]
|
||||||
|
// Requirements that must be met for the script to be displayed
|
||||||
preconditions: Option<Vec<Precondition>>,
|
preconditions: Option<Vec<Precondition>>,
|
||||||
#[serde(default)]
|
#[serde(default)]
|
||||||
|
// Optional command. This is used for adding "raw" commands to the UI.
|
||||||
command: Option<String>,
|
command: Option<String>,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user