rename client id -> client key

This commit is contained in:
Dustin J. Mitchell 2020-12-28 21:31:02 +00:00
parent e555af8895
commit 92d629522b
11 changed files with 124 additions and 122 deletions

View file

@ -18,8 +18,8 @@ pub fn from_config(config: ServerConfig) -> Fallible<Box<dyn Server>> {
ServerConfig::Local { server_dir } => Box::new(LocalServer::new(server_dir)?),
ServerConfig::Remote {
origin,
client_id,
client_key,
encryption_secret,
} => Box::new(RemoteServer::new(origin, client_id, encryption_secret)),
} => Box::new(RemoteServer::new(origin, client_key, encryption_secret)),
})
}