Last active
October 25, 2024 18:58
-
-
Save joshbetz/621f5c7c63ce702e00d29cb73997b9c1 to your computer and use it in GitHub Desktop.
sleep
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
exports.onExecutePostLogin = async (event, api) => { | |
await new Promise(r => setTimeout(r, 4000)); | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment