aboutsummaryrefslogtreecommitdiffstats
path: root/utils
diff options
context:
space:
mode:
Diffstat (limited to 'utils')
-rw-r--r--utils/fs/os.go4
1 files changed, 4 insertions, 0 deletions
diff --git a/utils/fs/os.go b/utils/fs/os.go
index e775a5a..db45a1a 100644
--- a/utils/fs/os.go
+++ b/utils/fs/os.go
@@ -170,3 +170,7 @@ func (f *OSFile) Close() error {
return f.file.Close()
}
+
+func (f *OSFile) ReadAt(p []byte, off int64) (int, error) {
+ return f.file.ReadAt(p, off)
+}