debug.go 109 B

1234567891011
  1. package debug
  2. import (
  3. "net/http"
  4. )
  5. func init() {
  6. go func() {
  7. http.ListenAndServe(":6060", nil)
  8. }()
  9. }