mirror of
https://github.com/Aviortheking/IMIE_CQ.git
synced 2025-04-23 19:32:10 +00:00
14 lines
195 B
JavaScript
14 lines
195 B
JavaScript
module.exports = class ApiController {
|
|
|
|
constructor(db) {
|
|
this.db = db
|
|
}
|
|
|
|
all(req, res) {
|
|
res.send(this.db.getAll())
|
|
}
|
|
|
|
single(req, res) {
|
|
res.send(this.db.getByID(req.query.id))
|
|
}
|
|
} |