mirror of
https://github.com/ollama/ollama.git
synced 2026-04-21 16:25:42 +02:00
11 lines
133 B
Go
11 lines
133 B
Go
package dialog
|
|
|
|
func firstOf(args ...string) string {
|
|
for _, arg := range args {
|
|
if arg != "" {
|
|
return arg
|
|
}
|
|
}
|
|
return ""
|
|
}
|