blob: 5bae1f57289bfab41e2851d34d634902b8f1a342 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
import readline from "readline";
import { parsePost } from "kronikarz/dist/parsePost";
const rl = readline.createInterface({
input: process.stdin,
output: process.stdout
});
rl.question("", filePath => {
parsePost(filePath);
});
|