Renamed 'whitelist' to 'allowlist'

This commit is contained in:
Philip (a-0) 2022-09-02 14:50:18 +02:00
parent 19ebd247f7
commit 53ae50fb2b
4 changed files with 7 additions and 7 deletions

View file

@ -6,7 +6,7 @@ pub struct Config {
pub bind_address: Option<String>,
pub bind_port: Option<String>,
pub client_storage_path: Option<String>,
pub receiver_whitelist: Option<Vec<String>>,
pub receiver_allowlist: Option<Vec<String>>,
pub clients: Vec<ClientConfig>,
pub mappings: Vec<Mapping>,
}