mirror of
https://github.com/httprunner/httprunner.git
synced 2026-05-12 10:49:43 +08:00
feat: init scaffold
This commit is contained in:
17
internal/builtin/scaffold.go
Normal file
17
internal/builtin/scaffold.go
Normal 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")
|
||||
}
|
||||
Reference in New Issue
Block a user