1
0
mirror of https://github.com/duke-git/lancet.git synced 2026-02-04 12:52:28 +08:00
Files
lancet/system/os_darwin.go
2023-04-26 17:53:20 +08:00

20 lines
186 B
Go

//go:build darwin
package system
import (
"os/exec"
)
func WithForeground() Option {
return func(c *exec.Cmd) {
}
}
func WithWinHide() Option {
return func(c *exec.Cmd) {
}
}