package db import "os" // mkdirAll wraps os.MkdirAll so the rest of the package depends on a single // filesystem helper (easier to swap in tests later). func mkdirAll(dir string) error { return os.MkdirAll(dir, 0o755) }