clash/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()
}