diff options
author | Quentin <quentin@deuxfleurs.fr> | 2020-11-02 15:48:39 +0100 |
---|---|---|
committer | Quentin <quentin@deuxfleurs.fr> | 2020-11-02 15:48:39 +0100 |
commit | cea871d944e36222f5fdabe3e907cb8cf86d26e8 (patch) | |
tree | a2928e83176e21f19fe9dc319c6753677742cb4a /src/util/config.rs | |
parent | 104e2ce0a25917dfaaab7e62042cc611fc05125a (diff) | |
download | garage-cea871d944e36222f5fdabe3e907cb8cf86d26e8.tar.gz garage-cea871d944e36222f5fdabe3e907cb8cf86d26e8.zip |
Skeleton to the new web API
Diffstat (limited to 'src/util/config.rs')
-rw-r--r-- | src/util/config.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util/config.rs b/src/util/config.rs index a78ef830..a5fbe4b4 100644 --- a/src/util/config.rs +++ b/src/util/config.rs @@ -54,7 +54,7 @@ pub struct ApiConfig { #[derive(Deserialize, Debug, Clone)] pub struct WebConfig { - pub website_bind_addr: SocketAddr, + pub web_bind_addr: SocketAddr, } fn default_max_concurrent_rpc_requests() -> usize { |