package store import "os" func ensureDir(dir string) error { if _, err := os.Stat(dir); err == nil { return nil } return os.MkdirAll(dir, 0o755) }