Commit 17d640cf by 孙龙

up

parent 55f7d24c
Showing with 0 additions and 16 deletions
package tools
import (
"fmt"
"os/exec"
)
func gomodinit(opt *Option)(err error){
fmt.Println("666")
cmd := exec.Command("go","mod","init","hello world")
res, err := cmd.Output()
fmt.Println(string(res))
// return
return
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment