alist/internal/model/stream.go
2022-06-15 20:41:17 +08:00

16 lines
162 B
Go

package model
import (
"io"
)
type FileStream struct {
Obj
io.ReadCloser
Mimetype string
}
func (f FileStream) GetMimetype() string {
return f.Mimetype
}