mirror of
https://github.com/makew0rld/amfora.git
synced 2024-11-03 02:37:23 -05:00
0df5effdcf
Co-authored-by: makeworld <25111343+makeworld-the-better-one@users.noreply.github.com> Co-authored-by: Stephen Robinson <stephen@drsudo.com>
12 lines
338 B
Go
12 lines
338 B
Go
// +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 [[mediatype-handlers]] command in the config")
|
|
}
|