()
| 319 | } |
| 320 | |
| 321 | func defaultConfigFileDirectory() string { |
| 322 | if runtime.GOOS == "windows" { |
| 323 | return fmt.Sprintf("%s\\ProgramData\\Cronitor", os.Getenv("SYSTEMDRIVE")) |
| 324 | } |
| 325 | |
| 326 | return "/etc/cronitor" |
| 327 | } |
| 328 | |
| 329 | func truncateString(s string, length int) string { |
| 330 | if len(s) <= length { |
no outgoing calls
no test coverage detected