feat: support v3 format debugtalk.py when executing hrp run/boom

This commit is contained in:
xucong053
2022-05-27 11:20:21 +08:00
parent 726e566668
commit 5c2be8d548
32 changed files with 1386 additions and 67 deletions

View File

@@ -46,12 +46,12 @@ func GetVersion() string {
}
func main() {
fungo.Register("get_version", GetVersion)
fungo.Register("sum_ints", SumInts)
fungo.Register("sum_two_int", SumTwoInt)
fungo.Register("sum_two", SumTwoInt)
fungo.Register("sum", Sum)
fungo.Register("setup_hook_example", SetupHookExample)
fungo.Register("teardown_hook_example", TeardownHookExample)
fungo.Register("GetVersion", GetVersion)
fungo.Register("SumInts", SumInts)
fungo.Register("SumTwoInt", SumTwoInt)
fungo.Register("SumTwoInt", SumTwoInt)
fungo.Register("Sum", Sum)
fungo.Register("SetupHookExample", SetupHookExample)
fungo.Register("TeardownHookExample", TeardownHookExample)
fungo.Serve()
}