mirror of
https://github.com/writefreely/writefreely
synced 2024-11-10 11:24:13 +00:00
eb6349f93a
This ensures the writefreely pkg can be used in other applications that need to load mysql themselves -- this can be done by building with the tag: wflib Ref T613
20 lines
487 B
Go
20 lines
487 B
Go
// +build wflib
|
|
|
|
/*
|
|
* Copyright © 2019 A Bunch Tell LLC.
|
|
*
|
|
* This file is part of WriteFreely.
|
|
*
|
|
* WriteFreely is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU Affero General Public License, included
|
|
* in the LICENSE file in this source code package.
|
|
*/
|
|
|
|
// This file contains dummy database funcs for when writefreely is used as a
|
|
// library.
|
|
|
|
package writefreely
|
|
|
|
func (db *datastore) isDuplicateKeyErr(err error) bool {
|
|
return false
|
|
}
|