add kill, list and run commands

This commit is contained in:
A.Unger
2020-06-04 13:43:03 +02:00
parent 6abc81dc81
commit 1cc12b0dd5
4 changed files with 170 additions and 0 deletions
+3
View File
@@ -14,6 +14,7 @@ import (
settings "github.com/owncloud/ocis-settings/pkg/config"
thumbnails "github.com/owncloud/ocis-thumbnails/pkg/config"
webdav "github.com/owncloud/ocis-webdav/pkg/config"
pman "github.com/refs/pman/pkg/config"
)
// Log defines the available logging configuration.
@@ -73,6 +74,7 @@ type Config struct {
Thumbnails *thumbnails.Config
WebDAV *webdav.Config
Settings *settings.Config
Runtime *pman.Config
}
// New initializes a new configuration with or without defaults.
@@ -91,5 +93,6 @@ func New() *Config {
Proxy: proxy.New(),
Thumbnails: thumbnails.New(),
Settings: settings.New(),
Runtime: pman.NewConfig(),
}
}