2
0
mirror of https://github.com/status-im/status-go.git synced 2025-01-17 10:13:22 +00:00

12 lines
219 B
Go
Raw Normal View History

package signal
const (
// EventsStats is sent periodically with stats like upload/download rate
EventStats = "stats"
)
// SendStats sends stats signal.
func SendStats(stats interface{}) {
send(EventStats, stats)
}