1
0
mirror of https://github.com/MetaCubeX/mihomo.git synced 2025-09-20 20:45:58 +08:00
Files
mihomo/tunnel/statistic/patch_android.go
2023-11-17 23:12:10 +08:00

8 lines
147 B
Go

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