don't need this getBadWords()

This commit is contained in:
Andrzej Stepien 2023-08-09 20:15:18 +02:00
parent 2a58932e05
commit 57a4200c6d
1 changed files with 0 additions and 6 deletions

View File

@ -12,9 +12,3 @@ export const db = Knex({
.select("word") .select("word")
.from("dictionary") .from("dictionary")
} }
export const getBadWords = async (db) => {
return db
.select("word")
.from("bad_words")
}