hypha: add support for passing environment variables

This commit is contained in:
Alex Zenla
2024-01-30 18:34:47 -08:00
parent 5e21d32295
commit bb77e651e0
4 changed files with 14 additions and 5 deletions

View File

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