2018-11-18 11:08:38 +01:00
|
|
|
// Config is put into a different package to prevent cyclic imports in case
|
|
|
|
// it is needed in several locations
|
|
|
|
|
|
|
|
package config
|
|
|
|
|
|
|
|
import "time"
|
|
|
|
|
|
|
|
type Config struct {
|
2018-11-18 11:23:00 +01:00
|
|
|
Period time.Duration `config:"period"`
|
|
|
|
StartUrl string `config:"start_url"`
|
2018-11-18 11:08:38 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
var DefaultConfig = Config{
|
2018-11-18 11:23:00 +01:00
|
|
|
Period: 1 * time.Second,
|
|
|
|
StartUrl: "https://www.youtube.com/watch?v=SmBCZgcGlKk",
|
2018-11-18 11:08:38 +01:00
|
|
|
}
|