vaguerent/lib/vagrant/command.rb
Mitchell Hashimoto 6c7e88c3ec vagrant halt
2011-12-17 11:14:56 -08:00

10 lines
222 B
Ruby

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