Files
filestore/remote/types.go
T
2025-10-29 00:59:52 +03:00

20 lines
310 B
Go

package remote
import (
"os"
"time"
)
// FileInfo реализует интерфейс os.FileInfo.
type FileInfo interface {
Name() string
Size() int64
Mode() os.FileMode
ModTime() time.Time
IsDir() bool
Sys() interface{}
}
// Metadata метаданные файла
type Metadata map[string]any