14 lines
456 B
Ruby
14 lines
456 B
Ruby
#-------------------------------------------------------------------------
|
|
# Copyright (c) Microsoft Open Technologies, Inc.
|
|
# All Rights Reserved. Licensed under the MIT License.
|
|
#--------------------------------------------------------------------------
|
|
|
|
module VagrantPlugins
|
|
module HyperV
|
|
module Communicator
|
|
lib_path = Pathname.new(File.expand_path("../communicator", __FILE__))
|
|
autoload :SSH, lib_path.join("ssh")
|
|
end
|
|
end
|
|
end
|