vagrant/plugins/commands/snapshot/plugin.rb

16 lines
335 B
Ruby
Raw Normal View History

2015-10-07 19:52:37 +00:00
require "vagrant"
module VagrantPlugins
module CommandSnapshot
class Plugin < Vagrant.plugin("2")
name "snapshot command"
description "The `snapshot` command gives you a way to manage snapshots."
command("snapshot") do
require_relative "command/root"
2015-10-07 19:52:37 +00:00
Command::Root
end
end
end
end