11 lines
181 B
Go
11 lines
181 B
Go
package constants
|
|
|
|
import "time"
|
|
|
|
const (
|
|
OutputDirPath = "./data"
|
|
PlaylistRefreshInterval = 3
|
|
NumberOfWorkers = 4
|
|
RefreshDelay = 3 * time.Second
|
|
)
|