mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2026-01-03 02:39:52 -06:00
23 lines
378 B
Go
23 lines
378 B
Go
package register
|
|
|
|
import (
|
|
"github.com/micro/cli"
|
|
"github.com/owncloud/ocis/pkg/config"
|
|
)
|
|
|
|
var (
|
|
// Commands defines the slice of commands.
|
|
Commands = []Command{}
|
|
)
|
|
|
|
// Command defines the register command.
|
|
type Command func(*config.Config) cli.Command
|
|
|
|
// AddCommand appends a command to Commands.
|
|
func AddCommand(cmd Command) {
|
|
Commands = append(
|
|
Commands,
|
|
cmd,
|
|
)
|
|
}
|