mirror of
https://github.com/larksuite/cli.git
synced 2026-07-08 10:08:02 +08:00
18 lines
360 B
Go
18 lines
360 B
Go
// Copyright (c) 2026 Lark Technologies Pte. Ltd.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package minutes
|
|
|
|
import "github.com/larksuite/cli/shortcuts/common"
|
|
|
|
// Shortcuts returns all minutes shortcuts.
|
|
func Shortcuts() []common.Shortcut {
|
|
return []common.Shortcut{
|
|
MinutesSearch,
|
|
MinutesDownload,
|
|
MinutesUpload,
|
|
MinutesUpdate,
|
|
MinutesSpeakerReplace,
|
|
}
|
|
}
|