require 'thor' module Renote module Cli class Application < Thor desc 'thru INFILE OUTFILE', 'Pass-through note taking records keyboard input to while synchronously displaying contents of .' def thru(infile,outfile) puts "IN #{infile}" puts "OUT #{outfile}" end end end end