Add bindings hook

This commit is contained in:
Lea Anthony
2023-02-26 15:06:05 +11:00
parent 91676080eb
commit f9ffe915f2
8 changed files with 259 additions and 51 deletions
+8
View File
@@ -0,0 +1,8 @@
package main
type GreetService struct {
}
func (*GreetService) Greet(name string) string {
return "Hello " + name
}