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 AlertMail string `env:"ALERT_MAIL" envDefault:"alerts@opplens.com"` } type WorkerConfig struct { Interval string `env:"WORKER_INTERVAL" envDefault:"* 10 * * * *"` }