13 lines
207 B
Go
13 lines
207 B
Go
//go:build !windows && !darwin && !linux
|
|
|
|
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"runtime"
|
|
)
|
|
|
|
func openWithDefaultApp(target string) error {
|
|
return fmt.Errorf("opening URLs is not supported on %s", runtime.GOOS)
|
|
}
|