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

README: replace agent.Listen nil param with empty Options (#55)

This commit is contained in:
Pieter Louw 2017-10-04 08:22:55 +02:00 committed by Emmanuel T Odeke
parent 25312cafb9
commit 3f15b6d2b6

View File

@ -38,7 +38,7 @@ import (
) )
func main() { func main() {
if err := agent.Listen(nil); err != nil { if err := agent.Listen(agent.Options{}); err != nil {
log.Fatal(err) log.Fatal(err)
} }
time.Sleep(time.Hour) time.Sleep(time.Hour)