feat: read clash config

This commit is contained in:
GyDi
2021-12-14 15:55:29 +08:00
parent b5d0c2b78b
commit 2a986a3d2f
3 changed files with 70 additions and 16 deletions

View File

@@ -0,0 +1,7 @@
use serde::{Deserialize, Serialize};
/// ### `verge.yaml` schema
#[derive(Default, Debug, Clone, Deserialize, Serialize)]
pub struct VergeConfig {
pub something: Option<String>,
}