Mitchell Hashimoto a1cef830e3 Add the Communicator plugin API.
This allows communication protocols to be defined for the machine. This
is how things like SSH will be implemented.
2012-08-08 21:28:28 -07:00

19 lines
549 B
Ruby

require "log4r"
require "vagrant/plugin/v1/errors"
module Vagrant
module Plugin
module V1
autoload :Command, "vagrant/plugin/v1/command"
autoload :Communicator, "vagrant/plugin/v1/communicator"
autoload :Config, "vagrant/plugin/v1/config"
autoload :Guest, "vagrant/plugin/v1/guest"
autoload :Host, "vagrant/plugin/v1/host"
autoload :Plugin, "vagrant/plugin/v1/plugin"
autoload :Provider, "vagrant/plugin/v1/provider"
autoload :Provisioner, "vagrant/plugin/v1/provisioner"
end
end
end