mirror of
https://github.com/hacdias/webdav.git
synced 2024-04-21 12:32:06 +00:00
* feat: introduce structured, field logging
The logging is currently minimal and only for initial message of listening and user login attempts
* chore: major version upgarde
there was a breaking API change in 8cd6d0a585 for which the git tag was v4.0.0 but the Go SIV was missed. This commit updates the SIV and retracts the defective version of v4.1.0.
10 lines
93 B
Go
10 lines
93 B
Go
package main
|
|
|
|
import (
|
|
"github.com/hacdias/webdav/v4/cmd"
|
|
)
|
|
|
|
func main() {
|
|
cmd.Execute()
|
|
}
|