Files
gobar/internal/config/config.go
2026-02-27 21:20:08 -07:00

16 lines
159 B
Go

package config
import (
"time"
)
type Config struct {
Interval time.Duration
}
func Default() Config {
return Config{
Interval: 30 * time.Second,
}
}