1
0
mirror of https://github.com/rclone/rclone.git synced 2025-12-15 15:53:41 +00:00

accounting: calculate rolling average speed

This commit is contained in:
Haochen Tong
2021-06-14 00:10:15 +08:00
committed by Nick Craig-Wood
parent d2050523de
commit 04aa6969a4
3 changed files with 84 additions and 19 deletions

View File

@@ -2,9 +2,10 @@ package accounting
import (
"context"
"github.com/rclone/rclone/fs/rc"
"sync"
"github.com/rclone/rclone/fs/rc"
"github.com/rclone/rclone/fs"
)