dave/app/app.go
2018-04-10 15:20:28 +02:00

10 lines
253 B
Go

// Package app provides all app related stuff like config parsing, serving, etc.
package app
import "golang.org/x/net/webdav"
// App holds configuration information and the webdav handler.
type App struct {
Config *Config
Handler *webdav.Handler
}