mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2025-12-13 07:46:06 +00:00
* detect unused typescript disables * fix lint errors uuid-types remove debug fix config * lint fixes
15 lines
352 B
TypeScript
15 lines
352 B
TypeScript
/* eslint-disable @typescript-eslint/no-floating-promises */
|
|
import { getNeode } from './neo4j'
|
|
import { trophies, verification } from './seed/badges'
|
|
|
|
// eslint-disable-next-line import/newline-after-import
|
|
;(async function () {
|
|
const neode = getNeode()
|
|
try {
|
|
await trophies()
|
|
await verification()
|
|
} finally {
|
|
neode.close()
|
|
}
|
|
})()
|