mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-08 23:43:09 +02:00
13 lines
290 B
TypeScript
13 lines
290 B
TypeScript
import * as express from 'express';
|
|
import git = require('git-last-commit');
|
|
|
|
module.exports = async (req: express.Request, res: express.Response) => {
|
|
// Get commit info
|
|
git.getLastCommit((err, commit) => {
|
|
res.send({
|
|
commit: commit
|
|
});
|
|
}, {
|
|
dst: `${__dirname}/../../`
|
|
});
|
|
};
|