goc/tests/samples/simple_agent/main.go
2020-08-05 14:42:00 +08:00

12 lines
109 B
Go

package main
import (
"fmt"
"time"
)
func main() {
fmt.Println("hello")
time.Sleep(time.Second * 15)
}