mirror of
https://github.com/baptisteArno/typebot.io.git
synced 2026-06-13 21:02:56 +08:00
10 lines
229 B
TypeScript
10 lines
229 B
TypeScript
import { destroyUser } from './helpers/destroyUser'
|
|
import { promptAndSetEnvironment } from './utils'
|
|
|
|
const runDestroyUser = async () => {
|
|
await promptAndSetEnvironment('production')
|
|
return destroyUser()
|
|
}
|
|
|
|
runDestroyUser()
|