Files
opencloud/notifications/pkg/config/config.go
2022-02-18 15:44:53 +01:00

20 lines
289 B
Go

package config
import (
"context"
"github.com/owncloud/ocis/ocis-pkg/shared"
)
// Config combines all available configuration parts.
type Config struct {
*shared.Commons
Service Service
Log *Log `ocisConfig:"log"`
Debug Debug `ocisConfig:"debug"`
Context context.Context
}