vagrant-lxc-ng/lib/vagrant-lxc/action/base_action.rb

12 lines
163 B
Ruby
Raw Normal View History

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