10 lines
219 B
Go
10 lines
219 B
Go
|
package zenity
|
||
|
|
||
|
func list(text string, items []string, opts options) (string, bool, error) {
|
||
|
return "", false, nil
|
||
|
}
|
||
|
|
||
|
func listMultiple(text string, items []string, opts options) ([]string, error) {
|
||
|
return nil, nil
|
||
|
}
|