wormhole-common 0.2.0

Common code for the Wormhole mod manager project.
Documentation
1
2
3
4
5
6
7
8
use serde::{Deserialize, Serialize};

#[derive(Serialize, Deserialize, Debug, Clone)]
pub struct InstanceMod {
    pub id: i32,
    pub name: String,
    pub paths: Vec<String>,
}