Add isIgnorableError to database-lib.go

This commit is contained in:
Matt Baer 2020-02-12 11:39:39 -05:00
parent 9fb12eea74
commit 8ce7d4c9fc
1 changed files with 5 additions and 1 deletions

View File

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