3
0

Make migrateable source an io.ReadSeeker

This commit is contained in:
Tomaž Jerman
2020-02-28 22:03:28 +01:00
parent b781151aa9
commit 37a669125e
+4 -4
View File
@@ -1,6 +1,8 @@
package types
import "os"
import (
"io"
)
var (
SfDateTime = "2006-01-02 15:04:05"
@@ -11,8 +13,6 @@ type (
Name string
Path string
Source *os.File
// @todo?
Mapping *os.File
Source io.ReadSeeker
}
)