vaguerent/lib/vagrant/command.rb
Mitchell Hashimoto e71007d47e vagrant destroy
2011-12-17 11:05:49 -08:00

9 lines
179 B
Ruby

module Vagrant
module Command
autoload :Base, 'vagrant/command/base'
autoload :Destroy, 'vagrant/command/destroy'
autoload :Up, 'vagrant/command/up'
end
end