28 lines
308 B
Go
28 lines
308 B
Go
package model
|
|
|
|
import (
|
|
"io"
|
|
"time"
|
|
)
|
|
|
|
type FileInfo interface {
|
|
GetSize() uint64
|
|
GetName() string
|
|
ModTime() time.Time
|
|
IsDir() bool
|
|
}
|
|
|
|
type FileStreamer interface {
|
|
io.ReadCloser
|
|
FileInfo
|
|
GetMimetype() string
|
|
}
|
|
|
|
type URL interface {
|
|
URL() string
|
|
}
|
|
|
|
type Thumbnail interface {
|
|
Thumbnail() string
|
|
}
|