# README
go-webdav
package main
import (
gowebdav "github.com/zijiren233/go-webdav"
)
func main() {
ser := gowebdav.NewWebdav()
ser.DefaultClient("", ".")
ser.Run(":8080")
}
package main
import (
gowebdav "github.com/zijiren233/go-webdav"
)
func main() {
ser := gowebdav.NewWebdav()
ser.DefaultClient("/prefix1", ".")
c := ser.DefaultClient("/prefix2", "../")
c.AddUser("admin", "admin", gowebdav.O_RDWR)
ser.Run(":8080")
}
# Functions
No description provided by the author
Perfection of gin logger middleware.
All client path prefix levels must match.
All client path prefix levels must match.
# Variables
No description provided by the author