From 8ab2d8e849440e26233fccb465c84fcd7cf143c2 Mon Sep 17 00:00:00 2001 From: Fang-Pen Lin Date: Tue, 7 Jan 2025 01:02:13 -0800 Subject: [PATCH] Add todo --- src/config.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/config.rs b/src/config.rs index c6cad55..c7fb752 100644 --- a/src/config.rs +++ b/src/config.rs @@ -21,6 +21,8 @@ pub enum AuthMethod { pub struct Wifi { pub ssid: String, pub auth_method: AuthMethod, + // TODO: provide a default way of not storing plaintext? while the key is probably going to + // be in the repo or somewhere, but at least they need to know in order to decode? pub password: Option, }