MCPcopy
hub / github.com/larksuite/cli / All

Function All

extension/platform/selector.go:16–16  ·  view source on GitHub ↗

All matches every command. Use for audit / metrics observers that must run on the whole surface.

()

Source from the content-addressed store, hash-verified

14// All matches every command. Use for audit / metrics observers that
15// must run on the whole surface.
16func All() Selector { return func(CommandView) bool { return true } }
17
18// None matches no command. Useful as a "disabled" placeholder.
19func None() Selector { return func(CommandView) bool { return false } }

Calls

no outgoing calls