mirror of
https://github.com/httprunner/httprunner.git
synced 2026-05-14 17:47:35 +08:00
18 lines
276 B
Go
18 lines
276 B
Go
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")
|
|
}
|