From 3fcca4af3a4bf093bc89fe84481aa335ad34b8d6 Mon Sep 17 00:00:00 2001 From: Minh Doan Date: Wed, 20 Mar 2019 18:09:37 -0700 Subject: [PATCH] add rest client support cmd --- cmd/restclientsupport/main.go | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 cmd/restclientsupport/main.go 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 {} +}