feat: init scaffold

This commit is contained in:
debugtalk
2022-01-08 11:42:39 +08:00
parent 9a31001029
commit e596bddda7
4 changed files with 47 additions and 2 deletions

View File

@@ -0,0 +1,17 @@
package builtin
import (
"fmt"
"github.com/httprunner/hrp/internal/ga"
)
func CreateScaffold(projectName string) error {
// report event
ga.SendEvent(ga.EventTracking{
Category: "Scaffold",
Action: "hrp startproject",
})
return fmt.Errorf("not implemented")
}