stuff and refactor
All checks were successful
API and ETL Build / build_etl (push) Successful in 8s
API and ETL Build / build_api (push) Successful in 9s

This commit is contained in:
2025-06-03 16:27:39 -03:00
parent 03b1f4f1d1
commit 2660826a3f
13 changed files with 505 additions and 425 deletions

View File

@@ -0,0 +1,7 @@
namespace OpenCand.ETL.Contracts
{
public interface IParserService<CsvObj>
{
Task ParseObject(CsvObj record);
}
}