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