rototo 0.1.0-alpha.2

Control plane for runtime configuration in application code.
Documentation
1
2
3
4
5
6
7
8
9
10
11
function lint_value(value)
  if value.value == "" then
    return {
      {
        message = "value " .. value.name .. " must not be empty",
        help = "Set a non-empty message."
      }
    }
  end
  return {}
end