lib/kv: align unsupported.go Start sigranture with bolt.go Start signature change

This commit is contained in:
Marcelo Waisman 2025-03-12 14:28:06 +02:00
parent 371d54ebac
commit bcc2415b8b

View File

@ -16,7 +16,7 @@ type DB struct{}
func Supported() bool { return false }
// Start a key-value database
func Start(ctx context.Context, facility string, f fs.Fs) (*DB, error) {
func Start(ctx context.Context, facility string, dir string, f fs.Fs) (*DB, error) {
return nil, ErrUnsupported
}