qwertyforce a376fd69c4 Ambience Engine integrated
Major update. Initial stage of integration
2021-05-21 22:22:58 +03:00

18 lines
311 B
Plaintext

import db_ops from './helpers/db_ops'
async function test() {
console.time("123")
const x = await db_ops.image_ops.get_images_with_similar_tags(1)
console.timeEnd("123")
console.log(x)
// console.log(JSON.stringify(x))
}
async function run(){
await test()
process.exit()
}
run()