1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
|
// Package beeep provides a cross-platform library for sending desktop notifications and beeps.
package beeep
import (
"errors"
"path/filepath"
"runtime"
)
var (
// ErrUnsupported is returned when operating system is not supported.
ErrUnsupported = errors.New("beeep: unsupported operating system: " + runtime.GOOS)
)
func pathAbs(path string) string {
var err error
var abs string
if path != "" {
abs, err = filepath.Abs(path)
if err != nil {
abs = path
}
}
return abs
}
|