fix: Update Execute function to accept configuration and scraper config

This commit is contained in:
Arik Jones (aider)
2024-09-14 15:17:00 -05:00
parent 9660a12549
commit 8b85d755af

View File

@@ -45,7 +45,8 @@ whose name is <project-directory-name>-rollup-<timestamp>.md.`,
},
}
func Execute() error {
func Execute(config *config.Config, scraperConfig scraper.Config) error {
cfg = config
return rootCmd.Execute()
}