From adaf7b2454711a72070ee11151f6462406cf70a5 Mon Sep 17 00:00:00 2001 From: Jordan Orelli Date: Mon, 12 Dec 2016 10:02:03 -0600 Subject: [PATCH] try grpc+qt on windows from a new project --- cmd/count-client/main.go | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 cmd/count-client/main.go diff --git a/cmd/count-client/main.go b/cmd/count-client/main.go new file mode 100644 index 0000000..81de989 --- /dev/null +++ b/cmd/count-client/main.go @@ -0,0 +1,14 @@ +package main + +import ( + "fmt" + "os" + + "github.com/therecipe/qt/widgets" +) + +func main() { + fmt.Println("Hey from VSCode") + widgets.NewQApplication(len(os.Args), os.Args) + widgets.QApplication_Exec() +} \ No newline at end of file