Files
GoLangProxy/bcp/utils.go
T
2025-03-01 18:07:52 +00:00

11 lines
265 B
Go

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")
}