miller/pkg/platform/getargs_notwindows.go
John Kerl 268a96d002
Export library code in pkg/ (#1391)
* Export library code in `pkg/`

* new doc page
2023-09-10 17:15:13 -04:00

17 lines
391 B
Go

// ================================================================
// Handling single quotes and double quotes is different on Windows unless
// particular care is taken, which is what this file does.
// ================================================================
//go:build !windows
// +build !windows
package platform
import (
"os"
)
func GetArgs() []string {
return os.Args
}