# API REST

The REST API service is started after the bot receives the ready event.

/*
    Type: GET
    Do not delete this section
*/

module.exports = (req, res) => {

    return res.status(200).send("Hello World!")
}