vagrant-lxc-ng/lib/vagrant-lxc/action/base_action.rb
2013-03-10 02:33:22 -03:00

12 lines
163 B
Ruby

module Vagrant
module LXC
module Action
class BaseAction
def initialize(app, env)
@app = app
end
end
end
end
end