mirror of
https://github.com/larksuite/cli.git
synced 2026-07-06 16:18:05 +08:00
14 lines
279 B
Go
14 lines
279 B
Go
// Copyright (c) 2026 Lark Technologies Pte. Ltd.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package event
|
|
|
|
import "github.com/larksuite/cli/shortcuts/common"
|
|
|
|
// Shortcuts returns all event shortcuts.
|
|
func Shortcuts() []common.Shortcut {
|
|
return []common.Shortcut{
|
|
EventSubscribe,
|
|
}
|
|
}
|