vagrant-lxc-ng/lib/vagrant-backports/ui.rb

13 lines
173 B
Ruby

module Vagrant
module UI
class Interface
def output(*args)
info(*args)
end
def detail(*args)
info(*args)
end
end
end
end