github.com/dmmcquay/sia@v1.3.1-0.20180712220038-9f8d535311b9/cmd/siac/consts.go (about) 1 package main 2 3 import ( 4 "time" 5 ) 6 7 const ( 8 // OutputRefreshRate is the rate at which siac will update something like a 9 // progress meter when displaying a continuous action like a download. 10 OutputRefreshRate = time.Millisecond * 250 11 12 // RenterDownloadTimeout is the amount of time that needs to elapse before 13 // the download command gives up on finding a download in the download list. 14 RenterDownloadTimeout = time.Minute 15 )