summaryrefslogtreecommitdiffstats
path: root/src/launcher/instance.rs
blob: 3e62990adf85cd57d647350ce7a9f5685990dec4 (plain) (blame)
1
2
3
4
5
6
7
8
9
use std::path::PathBuf;
use serde::Deserialize;
use uuid::Uuid;

#[derive(Deserialize, Debug, Clone)]
pub struct Instance {
    pub uuid: Uuid,
    pub path: PathBuf
}