StreamRecorder/pkg/constants/downloader.go
2025-07-22 00:34:04 -05:00

11 lines
181 B
Go

package constants
import "time"
const (
OutputDirPath = "./data"
PlaylistRefreshInterval = 3
NumberOfWorkers = 4
RefreshDelay = 3 * time.Second
)