diff --git a/urtrator.go b/urtrator.go index b0f1d36..a379689 100644 --- a/urtrator.go +++ b/urtrator.go @@ -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()