1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// #[derive(Debug, Default)]
// pub struct Entry {
//     pub alias: Option<String>,
//     pub path: String,
// }

// impl From<&str> for Entry {
//     fn from(path: &str) -> Self {
//         Self {
//             alias: None,
//             path: path.to_string().into(),
//         }
//     }
// }


#[derive(Debug)]
pub struct BundleOptions {
    pub entries: Vec<String>,
}