go-webdav/webdav.go

18 lines
284 B
Go
Raw Normal View History

2020-01-21 20:01:18 +00:00
// Package webdav provides a client and server WebDAV filesystem implementation.
//
// WebDAV is defined in RFC 4918.
package webdav
import (
"time"
)
// TODO: add ETag, MIMEType to FileInfo
type FileInfo struct {
Href string
Size int64
ModTime time.Time
IsDir bool
}