path.go 207 B

123456789
  1. package configs
  2. import "fmt"
  3. func SSLFilePath() (key string, pem string) {
  4. key = fmt.Sprintf("%s/%s.%s", "/tmp", "httpserver", "key")
  5. pem = fmt.Sprintf("%s/%s.%s", "/tmp", "httpserver", "pem")
  6. return
  7. }