11 lines
362 B
JavaScript
11 lines
362 B
JavaScript
const { app, globalConfig } = require("../index.js")
|
|
|
|
app.get("/nowplaying", (rreq,rres) => {
|
|
if (rreq.query.format === "html") {
|
|
rres.send("<span>The /nowplaying endpoint is currently under construction.</span>")
|
|
} else {
|
|
rres.send({"message":"The /nowplaying endpoint is currently under construction."})
|
|
}
|
|
})
|
|
|
|
module.exports = {app} |