15 lines
252 B
Ruby
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
|