mirror of
https://github.com/OpenListTeam/OpenList.git
synced 2025-07-19 01:48:42 +08:00
19 lines
207 B
Go
19 lines
207 B
Go
![]() |
package driver
|
||
|
|
||
|
import (
|
||
|
"io"
|
||
|
"time"
|
||
|
)
|
||
|
|
||
|
type FileInfo interface {
|
||
|
GetName() string
|
||
|
GetModTime() time.Time
|
||
|
GetSize() int64
|
||
|
}
|
||
|
|
||
|
type FileStream interface {
|
||
|
io.ReadCloser
|
||
|
FileInfo
|
||
|
GetMimetype() string
|
||
|
}
|