mirror of
https://github.com/johnkerl/miller.git
synced 2026-01-23 10:15:36 +00:00
11 lines
100 B
Go
11 lines
100 B
Go
// +build !windows
|
|
|
|
package arch
|
|
|
|
import (
|
|
"os"
|
|
)
|
|
|
|
func GetMainArgs() []string {
|
|
return os.Args
|
|
}
|