dave/app/app.go

11 lines
253 B
Go
Raw Normal View History

2018-04-09 14:12:54 +02:00
// 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
}