package differ
import (
"github.com/RedHatInsights/ccx-notification-service/types"
)
func deleteOperationSpecified ( cliFlags types . CliFlags ) bool {
return cliFlags . PrintNewReportsForCleanup ||
cliFlags . PerformNewReportsCleanup ||
cliFlags . PrintOldReportsForCleanup ||
cliFlags . PerformOldReportsCleanup
}
|