add postprocessing service

Signed-off-by: jkoberg <jkoberg@owncloud.com>
This commit is contained in:
jkoberg
2022-12-08 11:00:42 +01:00
parent c2be1370ea
commit a004095a6c
15 changed files with 565 additions and 0 deletions
@@ -0,0 +1,19 @@
package command
import (
"github.com/owncloud/ocis/v2/services/postprocessing/pkg/config"
"github.com/urfave/cli/v2"
)
// Version prints the service versions of all running instances.
func Version(cfg *config.Config) *cli.Command {
return &cli.Command{
Name: "version",
Usage: "print the version of this binary and the running extension instances",
Category: "info",
Action: func(c *cli.Context) error {
// not implemented
return nil
},
}
}