go-webdav/webdav.go

19 lines
295 B
Go

// Package webdav provides a client and server WebDAV filesystem implementation.
//
// WebDAV is defined in RFC 4918.
package webdav
import (
"time"
)
// TODO: add ETag to FileInfo
type FileInfo struct {
Path string
Size int64
ModTime time.Time
IsDir bool
MIMEType string
}