summaryrefslogtreecommitdiffstats
path: root/src/launcher/instance.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/launcher/instance.rs')
-rw-r--r--src/launcher/instance.rs9
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
+}