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

17 lines
275 B
Ruby

module Vagrant
module LXC
module Action
class BaseAction
def initialize(app, env)
@app = app
end
def call(env)
puts "TODO: Implement #{self.class.name}"
@app.call(env)
end
end
end
end
end