mirror of
https://github.com/zeromicro/go-zero.git
synced 2025-01-24 01:30:25 +08:00
17 lines
289 B
Go
17 lines
289 B
Go
package env
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/spf13/cobra"
|
|
"github.com/zeromicro/go-zero/tools/goctl/pkg/env"
|
|
)
|
|
|
|
func write(_ *cobra.Command, args []string) error {
|
|
if len(sliceVarWriteValue) > 0 {
|
|
return env.WriteEnv(sliceVarWriteValue)
|
|
}
|
|
fmt.Println(env.Print(args...))
|
|
return nil
|
|
}
|