2025-04-07 02:36:31 +00:00

12 lines
233 B
Lua

---@diagnostic disable lowercase-global
utils = {}
function utils.Notify(msg, type)
lib.notify({
title = "GPS",
description = msg,
position = "top",
type = type or "inform",
})
end