mirror of
https://github.com/IT4Change/Ocelot-Social.git
synced 2026-04-06 01:25:31 +00:00
15 lines
354 B
TypeScript
15 lines
354 B
TypeScript
/* eslint-disable @typescript-eslint/no-floating-promises */
|
|
import { getNeode } from './neo4j'
|
|
import { trophies, verification } from './seed/badges'
|
|
|
|
// eslint-disable-next-line import-x/newline-after-import
|
|
;(async function () {
|
|
const neode = getNeode()
|
|
try {
|
|
await trophies()
|
|
await verification()
|
|
} finally {
|
|
neode.close()
|
|
}
|
|
})()
|