Files
dtic-DIIAA/adn/tools/w-zombi/lib/wzombi/routes/log.rb
T

15 lines
252 B
Ruby

module WZombi
module Routes
class Log
def initialize(config)
@config = config
end
def call(req, res)
File.open(@config.log_path, "a") { |f| f.puts(req.body) }
res.body = "OK"
end
end
end
end