stats.go 166 B

123456789101112
  1. package torrent
  2. import (
  3. "io"
  4. "github.com/davecgh/go-spew/spew"
  5. )
  6. func dumpStats[T any](w io.Writer, stats T) {
  7. spew.NewDefaultConfig()
  8. spew.Fdump(w, stats)
  9. }