diff --git a/cmd/restclientsupport/main.go b/cmd/restclientsupport/main.go new file mode 100644 index 000000000..4f7b31bb8 --- /dev/null +++ b/cmd/restclientsupport/main.go @@ -0,0 +1,14 @@ +package main + +import ( + "fmt" + + "github.com/harmony-one/harmony/api/service/restclientsupport" +) + +func main() { + s := restclientsupport.New(nil, nil, nil) + s.StartService() + fmt.Println("Server started") + select {} +}