mirror of
https://github.com/ollama/ollama.git
synced 2025-11-11 20:27:38 +01:00
* app: add code for macOS and Windows apps under 'app' * app: add readme * app: windows and linux only for now * ci: fix ui CI validation --------- Co-authored-by: jmorganca <jmorganca@gmail.com>
13 lines
153 B
Go
13 lines
153 B
Go
//go:build windows
|
|
|
|
package dialog
|
|
|
|
func firstOf(args ...string) string {
|
|
for _, arg := range args {
|
|
if arg != "" {
|
|
return arg
|
|
}
|
|
}
|
|
return ""
|
|
}
|