hypha: implement the ability to override the command line to execute

This commit is contained in:
Alex Zenla
2024-01-22 05:30:02 -08:00
parent e15ac71405
commit 3085a3738f
6 changed files with 49 additions and 8 deletions

6
hypha/src/shared/mod.rs Normal file
View File

@ -0,0 +1,6 @@
use serde::{Deserialize, Serialize};
#[derive(Serialize, Deserialize)]
pub struct LaunchInfo {
pub run: Option<Vec<String>>,
}