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