mirror of
https://github.com/makeworld-the-better-one/amfora.git
synced 2024-11-22 15:46:51 +03:00
97ee1aa368
Fixes #207
13 lines
391 B
Go
13 lines
391 B
Go
//go:build !linux && !darwin && !windows && !freebsd && !netbsd && !openbsd
|
|
// +build !linux,!darwin,!windows,!freebsd,!netbsd,!openbsd
|
|
|
|
package sysopen
|
|
|
|
import "fmt"
|
|
|
|
// Open opens `path` in default system viewer, but not on this OS.
|
|
func Open(path string) (string, error) {
|
|
return "", fmt.Errorf("unsupported OS for default system viewer. " +
|
|
"Set a catch-all command in the config")
|
|
}
|