package bootstrap import ( "tm/pkg/config" ) // Config defines the scraper application configuration type Config struct { Database config.DatabaseConfig Logging config.LoggingConfig Notification config.NotificationConfig Ollama config.OllamaConfig Worker WorkerConfig } type WorkerConfig struct { Interval string `env:"WORKER_INTERVAL" envDefault:"* 10 * * * *"` }