mirror of
https://github.com/status-im/status-go.git
synced 2025-01-09 14:16:21 +00:00
12 lines
219 B
Go
12 lines
219 B
Go
|
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)
|
||
|
}
|