# frozen_string_literal: true require "thor" class Vendra::CLI < Thor include Thor::Actions desc "this is summary.", "this is detailed description." def example p "command called." create_file "~/.vendra/example.conf", "your vendra config" end def insert(value) cache_piece = CachePiece.new(value) insert(cache_piece) end end