fix static file handler

This commit is contained in:
Anton Maminov 2022-07-30 14:52:47 +03:00
parent 4aa28c423c
commit dac4d528ff

View file

@ -75,5 +75,9 @@ module Kemal
call_next(context)
end
end
private def modification_time(file_path)
File.info(file_path).modification_time
end
end
end