Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
dev-mode-explorers/dev-mode-javascript
randydev
/
ryu-js
like
0
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
6b55fd1
ryu-js
/
bot
/
telegrambot.js
randydev
Create bot/telegrambot.js
430796e
verified
about 1 month ago
raw
Copy download link
history
blame
Safe
198 Bytes
const
{
Bot
} =
from
"grammy"
;
const
bot =
new
Bot
(
""
);
bot.
on
(
"/start"
,
(
ctx
) =>
ctx.
reply
(
"Hi there!"
));
function
InitBot
(
) {
bot.
start
();
console
.
log
(
"Starting Bot"
)
}
export
{
InitBot
};