Files
opencloud/thumbnails/pkg/config/http.go
2022-03-29 15:06:58 +02:00

9 lines
234 B
Go

package config
// HTTP defines the available http configuration.
type HTTP struct {
Addr string `yaml:"addr" env:"THUMBNAILS_HTTP_ADDR"`
Root string `yaml:"root" env:"THUMBNAILS_HTTP_ROOT"`
Namespace string `yaml:"-"`
}