29e90cc13b
This focuses on Windows first, but coudl be used for Mac and possibly linux in the future.
11 lines
185 B
Go
11 lines
185 B
Go
package store
|
|
|
|
import (
|
|
"os"
|
|
"path/filepath"
|
|
)
|
|
|
|
func getStorePath() string {
|
|
localAppData := os.Getenv("LOCALAPPDATA")
|
|
return filepath.Join(localAppData, "Ollama", "config.json")
|
|
}
|