1
0
mirror of https://github.com/google/gops.git synced 2024-11-24 08:22:25 +02:00
gops/examples/hello/main.go

20 lines
336 B
Go
Raw Normal View History

2016-11-04 07:43:04 +02:00
// Copyright 2016 The Go Authors. All rights reserved.
2016-11-04 07:42:22 +02:00
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package main
import (
"log"
2016-11-04 07:42:22 +02:00
"time"
"github.com/google/gops/agent"
2016-11-04 07:42:22 +02:00
)
func main() {
if err := agent.Listen(nil); err != nil {
log.Fatal(err)
}
2016-11-04 07:42:22 +02:00
time.Sleep(time.Hour)
}