dashboard-core/__ModuleExample/index.js
Jonny_Bro (Nikita) b923be2d69 first commit
2023-06-19 12:35:11 +05:00

13 lines
404 B
JavaScript

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.")
})
},
}