mirror of
https://github.com/ragestudio/linebridge.git
synced 2025-06-09 02:24:17 +00:00
16 lines
322 B
JavaScript
16 lines
322 B
JavaScript
class Controller {
|
|
constructor(key, exec, params) {
|
|
this.key = key ?? "controller"
|
|
this.params = { ...params }
|
|
|
|
if (typeof exec === "function") {
|
|
this.exec = exec
|
|
}
|
|
}
|
|
|
|
exec(req, res, next) {
|
|
res.json(`empty response`)
|
|
}
|
|
}
|
|
|
|
module.exports = { Controller } |