Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
pythonsnake
/
counting-bot
like
0
Running
App
Files
Files
Fetching metadata from the HF Docker repository...
main
counting-bot
/
events
/
ready.js
pythonSnake5036
Remove logging
cf32a82
over 1 year ago
raw
Copy download link
history
blame
Safe
153 Bytes
const
{
Events
} =
require
(
'discord.js'
);
module
.
exports
= {
name
:
Events
.
ClientReady
,
once
:
true
,
execute
(
client
) {
console
.
log
(
`Ready!`
);
},
};