| 1 | //go:build !windows |
| 2 | |
| 3 | package hook |
| 4 | |
| 5 | import ( |
| 6 | "context" |
| 7 | "os/exec" |
| 8 | ) |
| 9 | |
| 10 | func windowsBatchCommand(context.Context, string) (*exec.Cmd, bool) { |
| 11 | return nil, false |
| 12 | } |
| 13 | |
| 14 | func windowsBatchArgvCommand(context.Context, string, []string) (*exec.Cmd, bool) { |
| 15 | return nil, false |
| 16 | } |
| 17 | |
| 18 | func windowsCmdShellCommand(context.Context, string) (*exec.Cmd, bool) { |
| 19 | return nil, false |
| 20 | } |
| 21 |