Fix for windows not to show console on launch.

This commit is contained in:
Stanislav Nikitin 2016-10-08 23:57:21 +05:00
parent e2a9298f85
commit 12a5605276
1 changed files with 8 additions and 0 deletions

View File

@ -18,6 +18,9 @@ import (
// stdlib
"fmt"
"runtime"
// other
"github.com/couchbase/goutils/platform"
)
func main() {
@ -26,6 +29,11 @@ func main() {
numCPUs := runtime.NumCPU()
runtime.GOMAXPROCS(numCPUs)
if runtime.GOOS == "windows" {
platform.HideConsole(true)
defer platform.HideConsole(false)
}
ctx := context.New()
ctx.Initialize()