1
0
mirror of https://github.com/MetaCubeX/mihomo.git synced 2025-09-19 20:15:59 +08:00
Files
mihomo/tunnel/statistic/patch_android.go
2023-11-17 01:21:02 +08:00

8 lines
138 B
Go

// +build android
package statistic
func (m *Manager) Total() (up, down int64) {
return m.uploadTotal.Load(), m.downloadTotal.Load()
}