From 7a652f19a52940241e418a38a00177a6a207ce9b Mon Sep 17 00:00:00 2001 From: VC Date: Fri, 13 Sep 2024 19:32:12 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=9A=91=EF=B8=8F:=20rewrite=20toml=20file?= =?UTF-8?q?=20at=20the=20end=20of=20execution=20for=20PT?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/main.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index f13bc0f..fe4c60e 100644 --- a/src/main.rs +++ b/src/main.rs @@ -112,6 +112,8 @@ fn main() { client_id: y.client_id, client_secret: y.client_secret, refresh_token: x, - }) + }); + + let _ = config.dump(matches.get_one::("config").unwrap()); }; }