mirror of
https://github.com/OpenListTeam/OpenList.git
synced 2025-07-19 01:48:42 +08:00
11 lines
135 B
Go
11 lines
135 B
Go
![]() |
package model
|
||
|
|
||
|
import "io"
|
||
|
|
||
|
// File is basic file level accessing interface
|
||
|
type File interface {
|
||
|
io.Reader
|
||
|
io.ReaderAt
|
||
|
io.Seeker
|
||
|
}
|