mirror of
https://github.com/Jguer/yay
synced 2024-10-31 04:12:51 +00:00
Added placeholder pacargo file
This commit is contained in:
parent
fcabffa649
commit
143764cf20
1 changed files with 13 additions and 0 deletions
13
pacargo/pacargo.go
Normal file
13
pacargo/pacargo.go
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
package pacargo
|
||||||
|
|
||||||
|
import (
|
||||||
|
"fmt"
|
||||||
|
"os"
|
||||||
|
)
|
||||||
|
|
||||||
|
// ReturnArgs prints os args
|
||||||
|
func ReturnArgs() {
|
||||||
|
for o := range os.Args {
|
||||||
|
fmt.Println(o)
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in a new issue