mirror of
https://github.com/ragestudio/comty.git
synced 2025-06-09 10:34:17 +00:00
7 lines
125 B
JavaScript
Executable File
7 lines
125 B
JavaScript
Executable File
export default {
|
|
route: "/ping",
|
|
method: "GET",
|
|
fn: async (req, res) => {
|
|
return res.send("pong")
|
|
}
|
|
} |