miller/cmd/experiments/cli-parser/arch/args_notwindows.go
John Kerl a977617797
Address some staticcheck issues (#823)
* address some staticcheck issues

* address some staticcheck issues

* address some staticcheck issues

* address some staticcheck issues
2022-01-01 14:28:19 -05:00

11 lines
100 B
Go

// +build !windows
package arch
import (
"os"
)
func GetMainArgs() []string {
return os.Args
}