module Lhj class Command class Trans < Command self.summary = '用于中英转换' self.description = '中英转换' def initialize(argv) super end def validate! super end def run p 'hello world' end end end end