mirror of
https://github.com/pomber/git-history.git
synced 2024-11-26 08:35:07 +03:00
9 lines
189 B
JavaScript
9 lines
189 B
JavaScript
|
const runServer = require("./server");
|
||
|
const getCommits = require("./git");
|
||
|
|
||
|
const path = process.argv.slice(2);
|
||
|
|
||
|
const commitsPromise = getCommits(path);
|
||
|
|
||
|
runServer(path, commitsPromise);
|