chore: add todo

This commit is contained in:
Stevan Freeborn
2024-08-23 22:09:46 -05:00
parent 461e25d073
commit 86527efad9
@@ -19,8 +19,9 @@ class DatabaseMaintainer(
_logger.LogError("Failed to get SDN file from OFAC.");
return;
}
using var stream = result.Value;
// TODO: Abstract this logic to wrapper around CsvHelper
using var reader = new StreamReader(stream);
var config = new CsvConfiguration(CultureInfo.InvariantCulture) { HasHeaderRecord = false };
using var csv = new CsvReader(reader, config);