caching and logging

This commit is contained in:
ghostersk
2025-03-01 18:07:52 +00:00
parent 102d930a56
commit 55b65aef8c
11 changed files with 897 additions and 69 deletions
+10
View File
@@ -0,0 +1,10 @@
package main
import "path/filepath"
func updatePaths() {
certDir = filepath.Join(baseDir, config.CertDir)
certPath = filepath.Join(certDir, config.CertFile)
keyPath = filepath.Join(certDir, config.KeyFile)
configPath = filepath.Join(baseDir, "config.yaml")
}