OhMyDitzzy
plugins data
496dca4
raw
history blame
347 Bytes
const handler = {
name: "Greet user",
description: "Greet the user",
method: "GET",
category: [],
alias: ["data"],
exec: async (req, res) => {
res.json({
status: 200,
message: "Welcome to DitzzyAPI, Lets get started by visit our documentation on: https://ditzzy-api.hf.space/docs"
})
}
}
export default handler