feat: add --output command in hrp build

This commit is contained in:
xucong053
2022-05-26 21:26:48 +08:00
parent 67c0cb8640
commit 2bee7ba3c7
6 changed files with 79 additions and 91 deletions

View File

@@ -4,6 +4,8 @@ import (
"fmt"
)
import "os"
func SumTwoInt(a, b int) int {
return a + b
}
@@ -38,3 +40,7 @@ func SetupHookExample(args string) string {
func TeardownHookExample(args string) string {
return fmt.Sprintf("step name: %v, teardown...", args)
}
func init() {
_, _ = os.Getwd()
}