Refactor openlocation feature
This commit is contained in:
12
internal/openfolder/open_other.go
Normal file
12
internal/openfolder/open_other.go
Normal file
@@ -0,0 +1,12 @@
|
||||
//go:build !linux && !windows
|
||||
|
||||
package openfolder
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"runtime"
|
||||
)
|
||||
|
||||
func OpenLocation(path string) error {
|
||||
return fmt.Errorf("unsupported OS: %s", runtime.GOOS)
|
||||
}
|
||||
Reference in New Issue
Block a user