alllllmost

This commit is contained in:
Bel LaPointe
2023-10-24 06:58:02 -06:00
parent c5e36df111
commit 4daf580b1b

View File

@@ -257,6 +257,7 @@ func isNumericByte(b byte) bool {
return '0' <= b && b <= '9' || b == '.' || b == '-'
}
// from "[^\n]*\n?.*" read "[^\n]*\n?"
func readTransactionValueCurrency(r io.Reader) (io.Reader, float64, string, error) {
return nil, 0, "", errors.New("not impl read a value currency")
}