UNPKG

tvcl

Version:

A simple CLI for show tracking

13 lines (10 loc) 256 B
const {error} = require('../lib/utils') const watcher = require('../lib/watcher') function watch(...ids) { if (!ids.length) { return error("Specify episode id") } ids.forEach((id) => watcher.watch(id)) watcher.save() } module.exports = watch