Files
memecoin-botV2/.pnpm-store/v10/files/82/19096d3dfc96afde933d1ef99560fe18fe017ce2874683544c197a129504cdde8d23ff80c91b7ebf80af3321ba48642c20c6468889a2fc12866eb28c43d02a

14 lines
293 B
Plaintext

'use strict'
// This is the main script that runs after the preload
// It imports the logger from the preload and logs a message
import { log } from './transport-preload.mjs'
log.info('hello from main')
// Wait a bit for the transport to flush
setTimeout(() => {
process.exit(0)
}, 500)