feat: Make STFS API public
Also: Happy new year :)
This commit is contained in:
Vendored
+14
@@ -0,0 +1,14 @@
|
||||
package cache
|
||||
|
||||
import "io"
|
||||
|
||||
type WriteCache interface {
|
||||
io.Closer
|
||||
io.Reader
|
||||
io.Seeker
|
||||
io.Writer
|
||||
|
||||
Truncate(size int64) error
|
||||
Size() (int64, error)
|
||||
Sync() error
|
||||
}
|
||||
Reference in New Issue
Block a user