program_executor/
program_executor.rs

1use std::path::PathBuf;
2
3use clap::Parser;
4
5#[derive(Debug, Parser)]
6struct ExecutorArgs {
7    #[arg(long)]
8    program_dir: PathBuf,
9    // input -> what type?
10}
11
12fn main() {
13    let _args = ExecutorArgs::parse();
14    // 1. get the exe from program dir
15    println!("Hello, world!");
16}