mirror of
https://github.com/status-im/status-go.git
synced 2025-01-09 14:16:21 +00:00
facad9f07e
* feat: upload/download rate for waku v1 messages * reorganize code * fix failing test
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)
|
|
}
|