mirror of
https://gitea.toothfairyai.com/ToothFairyAI/tf_code.git
synced 2026-04-02 07:03:45 +00:00
9 lines
238 B
Go
9 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
|
|
}
|