13 lines
177 B
Go
13 lines
177 B
Go
//go:build !linux && !windows
|
|
|
|
package openfolder
|
|
|
|
import (
|
|
"fmt"
|
|
"runtime"
|
|
)
|
|
|
|
func OpenLocation(path string) error {
|
|
return fmt.Errorf("unsupported OS: %s", runtime.GOOS)
|
|
}
|