mirror of
https://github.com/larksuite/cli.git
synced 2026-07-07 00:55:53 +08:00
15 lines
304 B
Go
15 lines
304 B
Go
// Copyright (c) 2026 Lark Technologies Pte. Ltd.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package contact
|
|
|
|
import "github.com/larksuite/cli/shortcuts/common"
|
|
|
|
// Shortcuts returns all contact shortcuts.
|
|
func Shortcuts() []common.Shortcut {
|
|
return []common.Shortcut{
|
|
ContactSearchUser,
|
|
ContactGetUser,
|
|
}
|
|
}
|