mirror of
https://github.com/larksuite/cli.git
synced 2026-07-07 17:45:15 +08:00
23 lines
439 B
Go
23 lines
439 B
Go
// Copyright (c) 2026 Lark Technologies Pte. Ltd.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package okr
|
|
|
|
import (
|
|
"github.com/larksuite/cli/shortcuts/common"
|
|
)
|
|
|
|
// Shortcuts returns all okr shortcuts.
|
|
func Shortcuts() []common.Shortcut {
|
|
return []common.Shortcut{
|
|
OKRListCycles,
|
|
OKRCycleDetail,
|
|
OKRListProgress,
|
|
OKRGetProgressRecord,
|
|
OKRCreateProgressRecord,
|
|
OKRUpdateProgressRecord,
|
|
OKRDeleteProgressRecord,
|
|
OKRUploadImage,
|
|
}
|
|
}
|