go-webdav/webdav.go
2020-01-21 22:43:39 +01:00

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 {
Href string
Size int64
ModTime time.Time
IsDir bool
MIMEType string
}