Clash.Meta/tunnel/statistic/patch_android.go

8 lines
143 B
Go
Raw Normal View History

2023-11-17 10:18:14 +08:00
// +build android,cmfa
package statistic
func (m *Manager) Total() (up, down int64) {
return m.uploadTotal.Load(), m.downloadTotal.Load()
}