Files
opencloud/ocis/pkg/command/thumbnails.go

34 lines
920 B
Go

package command
import (
"fmt"
"github.com/owncloud/ocis/v2/extensions/thumbnails/pkg/command"
"github.com/owncloud/ocis/v2/ocis-pkg/config"
"github.com/owncloud/ocis/v2/ocis-pkg/config/parser"
"github.com/owncloud/ocis/v2/ocis/pkg/command/helper"
"github.com/owncloud/ocis/v2/ocis/pkg/register"
"github.com/urfave/cli/v2"
)
// ThumbnailsCommand is the entrypoint for the thumbnails command.
func ThumbnailsCommand(cfg *config.Config) *cli.Command {
return &cli.Command{
Name: cfg.Thumbnails.Service.Name,
Usage: helper.SubcommandDescription(cfg.Thumbnails.Service.Name),
Category: "extensions",
Before: func(c *cli.Context) error {
if err := parser.ParseConfig(cfg, true); err != nil {
fmt.Printf("%v", err)
}
cfg.Thumbnails.Commons = cfg.Commons
return nil
},
Subcommands: command.GetCommands(cfg.Thumbnails),
}
}
func init() {
register.AddCommand(ThumbnailsCommand)
}