mihomo/tunnel/statistic/patch.go

6 lines
119 B
Go
Raw Permalink Normal View History

2023-10-23 16:50:43 +08:00
package statistic
func (m *Manager) Total() (up, down int64) {
return m.uploadTotal.Load(), m.downloadTotal.Load()
}