@@ -7,16 +7,21 @@ import (
7
7
)
8
8
9
9
type WhisperService struct {
10
- Confirmf func (context.Context , * ldk.WhisperContentConfirm ) (bool , error )
11
- Formf func (context.Context , * ldk.WhisperContentForm ) (bool , map [string ]ldk.WhisperContentFormOutput , error )
12
- Listf func (context.Context , * ldk.WhisperContentList ) error
13
- Markdownf func (context.Context , * ldk.WhisperContentMarkdown ) error
10
+ Confirmf func (context.Context , * ldk.WhisperContentConfirm ) (bool , error )
11
+ Disambiguationf func (context.Context , * ldk.WhisperContentDisambiguation ) (bool , error )
12
+ Formf func (context.Context , * ldk.WhisperContentForm ) (bool , map [string ]ldk.WhisperContentFormOutput , error )
13
+ Listf func (context.Context , * ldk.WhisperContentList ) error
14
+ Markdownf func (context.Context , * ldk.WhisperContentMarkdown ) error
14
15
}
15
16
16
17
func (w * WhisperService ) Confirm (ctx context.Context , content * ldk.WhisperContentConfirm ) (bool , error ) {
17
18
return w .Confirmf (ctx , content )
18
19
}
19
20
21
+ func (w * WhisperService ) Disambiguation (ctx context.Context , content * ldk.WhisperContentDisambiguation ) (bool , error ) {
22
+ return w .Disambiguationf (ctx , content )
23
+ }
24
+
20
25
func (w * WhisperService ) Form (ctx context.Context , content * ldk.WhisperContentForm ) (bool , map [string ]ldk.WhisperContentFormOutput , error ) {
21
26
return w .Formf (ctx , content )
22
27
}
0 commit comments