dashboard-core/__ModuleExample/index.js

14 lines
404 B
JavaScript
Raw Normal View History

2023-06-19 12:35:11 +05:00
module.exports = {
app: ({ app, config, themeConfig }) => {
app.get("/moduleexample", (req, res) => {
res.send("ModuleExample: Hello World!")
})
},
server: ({ io, server, config, themeConfig }) => {
const test = io.of("/moduleexample")
test.on("connection", () => {
console.log("ModuleExample socket.io connected.")
})
},
}