adding in file path option #2

Merged
jake merged 2 commits from new/file-path into main 2025-09-08 21:05:10 +00:00
Showing only changes of commit 20f6e45150 - Show all commits

View File

@ -1,11 +1,9 @@
package lite
import (
"fmt"
)
import "errors"
var (
ErrBadFilename error = fmt.Errorf("database filename cannot be empty")
ErrBadFilename error = errors.New("database filename cannot be empty")
)
type Option func(d *database) error