Remove deadcode or fix unreachable code

This commit is contained in:
nemunaire 2024-03-12 10:12:05 +01:00
commit 3519f7416d
4 changed files with 5 additions and 4 deletions

View file

@ -573,10 +573,6 @@ func DBClose() error {
return db.Close()
}
func DBPrepare(query string) (*sql.Stmt, error) {
return db.Prepare(query)
}
func DBQuery(query string, args ...interface{}) (*sql.Rows, error) {
return db.Query(query, args...)
}