A clean, Markdown-based publishing platform made for writers. Write together, and build a community. https://writefreely.org
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 
 

21 行
487 B

  1. // +build wflib
  2. /*
  3. * Copyright © 2019 A Bunch Tell LLC.
  4. *
  5. * This file is part of WriteFreely.
  6. *
  7. * WriteFreely is free software: you can redistribute it and/or modify
  8. * it under the terms of the GNU Affero General Public License, included
  9. * in the LICENSE file in this source code package.
  10. */
  11. // This file contains dummy database funcs for when writefreely is used as a
  12. // library.
  13. package writefreely
  14. func (db *datastore) isDuplicateKeyErr(err error) bool {
  15. return false
  16. }