From 787eaad35210f17e571bf6cd54794f0754185370 Mon Sep 17 00:00:00 2001 From: MaysWind Date: Wed, 18 Jun 2025 23:39:24 +0800 Subject: [PATCH] add comments --- pkg/converters/camt/camt_data_reader.go | 1 + pkg/converters/ofx/ofx_data_reader.go | 1 + 2 files changed, 2 insertions(+) diff --git a/pkg/converters/camt/camt_data_reader.go b/pkg/converters/camt/camt_data_reader.go index 1a105afb..afbd9d27 100644 --- a/pkg/converters/camt/camt_data_reader.go +++ b/pkg/converters/camt/camt_data_reader.go @@ -16,6 +16,7 @@ type camt053FileReader struct { } // read returns the imported camt.053 data +// Reference: https://www.iso20022.org/message-set/1196/download func (r *camt053FileReader) read(ctx core.Context) (*camt053File, error) { file := &camt053File{} diff --git a/pkg/converters/ofx/ofx_data_reader.go b/pkg/converters/ofx/ofx_data_reader.go index 9af147b7..030be917 100644 --- a/pkg/converters/ofx/ofx_data_reader.go +++ b/pkg/converters/ofx/ofx_data_reader.go @@ -47,6 +47,7 @@ type ofxVersion2FileReader struct { } // read returns the imported open financial exchange (ofx) file +// Reference: https://www.financialdataexchange.org/FDX/FDX/About/OFX-Work-Group.aspx?a315d1c24e44=2 func (r *ofxVersion1FileReader) read(ctx core.Context) (*ofxFile, error) { file := &ofxFile{}