init.lua 233 B

123456789101112
  1. local M = {}
  2. local health = require("health")
  3. M.check = function()
  4. health.report_start("report 1")
  5. health.report_ok("everything is fine")
  6. health.report_start("report 2")
  7. health.report_ok("nothing to see here")
  8. end
  9. return M