2022-06-06 21:48:53 +08:00

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
}