First commit

This commit is contained in:
ghostersk
2025-03-01 11:39:07 +00:00
commit a86ef6fe1d
8 changed files with 507 additions and 0 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")
}