mirror of
https://github.com/binwiederhier/ntfy.git
synced 2026-01-18 16:17:26 +01:00
15 lines
214 B
Go
15 lines
214 B
Go
//go:build windows
|
|
|
|
package client
|
|
|
|
import (
|
|
"os"
|
|
"path/filepath"
|
|
)
|
|
|
|
func init() {
|
|
if configDir, err := os.UserConfigDir(); err == nil {
|
|
DefaultConfigFile = filepath.Join(configDir, "ntfy", "client.yml")
|
|
}
|
|
}
|