aboutsummaryrefslogtreecommitdiff
path: root/server/controllers/example.js
blob: 400bafc27de6e1196d8adaf9c0c73b22cdd475a9 (plain) (blame)
1
2
3
4
5
6
7
module.exports = {
  index(req, res) {
    res.json({
      status: "success"
    });
  }
};