const https = require('https')

const [source, target] = process.argv.slice(2)
if (!(source && target)) throw new Error('Usage: node find-path.js source target')

// TODO: find the shortest path from `source` to `target`