mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2026-01-04 19:29:49 -06:00
16 lines
295 B
Go
16 lines
295 B
Go
package command
|
|
|
|
import (
|
|
phoenix "github.com/owncloud/ocis-phoenix/pkg/command"
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
// Phoenix is the entry point for the phoenix command.
|
|
func Phoenix() *cobra.Command {
|
|
cmd := phoenix.Server()
|
|
cmd.Use = "phoenix"
|
|
cmd.Short = "Start phoenix server"
|
|
|
|
return cmd
|
|
}
|