mirror of
https://github.com/larksuite/cli.git
synced 2026-09-14 18:42:53 +08:00
31 lines
786 B
Go
31 lines
786 B
Go
// Copyright (c) 2026 Lark Technologies Pte. Ltd.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package event
|
|
|
|
import (
|
|
"github.com/spf13/cobra"
|
|
|
|
"github.com/larksuite/cli/internal/cmdutil"
|
|
)
|
|
|
|
func NewCmdEvents(f *cmdutil.Factory) *cobra.Command {
|
|
cmd := &cobra.Command{
|
|
Use: "event",
|
|
Short: "Consume and manage real-time events",
|
|
Long: `Unified event consumption system. Use 'event consume <EventKey>' to start consuming events.`,
|
|
// Without SilenceUsage, RunE errors print the full flag help banner.
|
|
SilenceUsage: true,
|
|
}
|
|
|
|
snap := compileCatalog()
|
|
cmd.AddCommand(NewCmdConsume(f, snap))
|
|
cmd.AddCommand(NewCmdList(f, snap))
|
|
cmd.AddCommand(NewCmdSchema(f, snap))
|
|
cmd.AddCommand(NewCmdStatus(f))
|
|
cmd.AddCommand(NewCmdStop(f))
|
|
cmd.AddCommand(NewCmdBus(f, snap))
|
|
|
|
return cmd
|
|
}
|