misskey/src/web/meta.ts

14 lines
290 B
TypeScript
Raw Normal View History

2016-12-28 14:49:51 -08:00
import * as express from 'express';
2017-01-02 13:03:19 -08:00
import git = require('git-last-commit');
2016-12-28 14:49:51 -08:00
module.exports = async (req: express.Request, res: express.Response) => {
// Get commit info
git.getLastCommit((err, commit) => {
res.send({
commit: commit
});
}, {
2016-12-28 15:05:27 -08:00
dst: `${__dirname}/../../`
2016-12-28 14:49:51 -08:00
});
};