Add isIgnorableError to database-lib.go

pull/175/head^2
Matt Baer 5 years ago
parent 9fb12eea74
commit 8ce7d4c9fc
  1. 6
      database-lib.go

@ -1,7 +1,7 @@
// +build wflib // +build wflib
/* /*
* Copyright © 2019 A Bunch Tell LLC. * Copyright © 2019-2020 A Bunch Tell LLC.
* *
* This file is part of WriteFreely. * This file is part of WriteFreely.
* *
@ -18,3 +18,7 @@ package writefreely
func (db *datastore) isDuplicateKeyErr(err error) bool { func (db *datastore) isDuplicateKeyErr(err error) bool {
return false return false
} }
func (db *datastore) isIgnorableError(err error) bool {
return false
}

Loading…
Cancel
Save