Skip to content
Snippets Groups Projects
Commit 7ae20f87 authored by Stephen D's avatar Stephen D
Browse files

simple callsign sanity check

parent 40d4b172
No related branches found
No related tags found
No related merge requests found
......@@ -35,7 +35,11 @@ pub struct Config {
impl Config {
pub fn load() -> anyhow::Result<Self> {
let file_contents = read_conf_file()?;
let config = toml::from_str(&file_contents).context("parsing config file")?;
let config: Self = toml::from_str(&file_contents).context("parsing config file")?;
if config.callsign == "CHANGEME" {
bail!("Callsign is not configured in config file");
}
Ok(config)
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment