mirror of
https://github.com/anomalyco/opencode.git
synced 2026-04-30 13:39:52 +00:00
8 lines
238 B
Go
8 lines
238 B
Go
package completions
|
|
|
|
// CompletionProvider defines the interface for completion data providers
|
|
type CompletionProvider interface {
|
|
GetId() string
|
|
GetChildEntries(query string) ([]CompletionSuggestion, error)
|
|
GetEmptyMessage() string
|
|
}
|