diff options
| author | 2024-12-30 19:33:48 -0600 | |
|---|---|---|
| committer | 2024-12-30 19:33:48 -0600 | |
| commit | e62d05698ba6af03906fb79acee1da488e64871a (patch) | |
| tree | 000c2c5c1a682694d4dfadb809937a4edd14915b /src/launcher/instance.rs | |
| parent | when the (diff) | |
some stuff has changed
Diffstat (limited to 'src/launcher/instance.rs')
| -rw-r--r-- | src/launcher/instance.rs | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/launcher/instance.rs b/src/launcher/instance.rs new file mode 100644 index 0000000..3e62990 --- /dev/null +++ b/src/launcher/instance.rs @@ -0,0 +1,9 @@ +use std::path::PathBuf; +use serde::Deserialize; +use uuid::Uuid; + +#[derive(Deserialize, Debug, Clone)] +pub struct Instance { + pub uuid: Uuid, + pub path: PathBuf +} |
