Files
GoLangProxy/utils.go
T

11 lines
265 B
Go
Raw Normal View History

2025-03-01 11:39:07 +00:00
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")
}