From b421695bb00e98a4f0b043755c1d87a7d0d38572 Mon Sep 17 00:00:00 2001 From: winstxnhdw Date: Sun, 2 Jul 2023 02:14:37 +0800 Subject: [PATCH] test --- src/index.rs | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/index.rs b/src/index.rs index 03c4919..eaf6fc2 100644 --- a/src/index.rs +++ b/src/index.rs @@ -1,3 +1,9 @@ +use tectonic::config; + pub async fn index() -> &'static str { + println!( + "{:?}", + config::PersistentConfig::format_cache_path(&config::PersistentConfig::default()) + ); "Welcome to v1 of the API!" }