require "nodes/version" module Nodes def self.init puts "init new nodes in the file system" end def self.put puts "put the nodes to server" end def self.get puts "get the nodes to server" end def self.del puts "delete the nodes from file system" end def self.list puts "list of nodes in the nodes" end def self.size(hidden = false) puts "size of the nodes" end # #def self.call cmd # successfully = system(cmd) # exit "blach" unless successfully #end end