Add setting optional location for steam

This commit is contained in:
Philip Kristoffersen
2021-09-25 12:56:13 +02:00
parent f68db38a7f
commit 8d0996c67b
6 changed files with 80 additions and 54 deletions
+6
View File
@@ -0,0 +1,6 @@
use serde::Deserialize;
#[derive(Debug, Deserialize, Clone)]
pub struct SteamSettings{
pub location: Option<String>,
}