add National Bank of Poland exchange rate data source

This commit is contained in:
MaysWind
2021-03-09 00:22:13 +08:00
parent 970c2a8776
commit 86370d87c9
5 changed files with 172 additions and 3 deletions
+8
View File
@@ -0,0 +1,8 @@
package utils
import "io"
// IdentReader returns the original io reader
func IdentReader(encoding string, input io.Reader) (io.Reader, error) {
return input, nil
}