From a65a484187850c8f9f44bd076fd2b30990dcd047 Mon Sep 17 00:00:00 2001 From: Jonni Liljamo Date: Mon, 6 Mar 2023 09:52:09 +0200 Subject: [PATCH] feat(client): change api_server to server_address in CfgDev --- client/src/cfg/mod.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/client/src/cfg/mod.rs b/client/src/cfg/mod.rs index 3de0e1a..072323b 100644 --- a/client/src/cfg/mod.rs +++ b/client/src/cfg/mod.rs @@ -70,14 +70,14 @@ impl Default for CfgUser { /// Settings that the user has no access to, or can only access through developer settings #[derive(Serialize, Deserialize, Resource, Debug, Component, PartialEq, Clone)] pub struct CfgDev { - /// API Server - pub api_server: String, + /// Server + pub server_address: String, } impl Default for CfgDev { fn default() -> Self { CfgDev { - api_server: "http://localhost:8080/api".to_string(), + server_address: "http://127.0.0.1:14191".to_string(), } } } -- 2.44.1