about summary refs log tree commit diff
path: root/test/check.js
blob: 12ed637c5733983189f1b4ad27d9525212952984 (plain)
1
2
3
4
5
6
7
8
9
10
11
import readline from 'readline';
import Post from 'kronikarz/dist/Post';

const rl = readline.createInterface({
  input: process.stdin,
  output: process.stdout,
});

rl.question('', (filePath) => {
  new Post(filePath);
});